Sha256: 8e350c119ae8431b4cc734a2a523c1c70452ea6bdbb2b040b902e2f127c98c58
Contents?: true
Size: 1.78 KB
Versions: 3
Compression:
Stored size: 1.78 KB
Contents
/* * ! UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides control sap.m.P13nGroupItem. sap.ui.define([ './library', 'sap/ui/core/Item' ], function(library, Item) { "use strict"; /** * Constructor for a new P13nGroupItem. * * @param {string} [sId] ID for the new control, generated automatically if no ID is given * @param {object} [mSettings] initial settings for the new control * @class Type for <code>groupItems</code> aggregation in P13nGroupPanel control. * @extends sap.ui.core.Item * @version 1.60.23 * @constructor * @public * @since 1.28.0 * @alias sap.m.P13nGroupItem * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var P13nGroupItem = Item.extend("sap.m.P13nGroupItem", /** @lends sap.m.P13nGroupItem.prototype */ { metadata: { library: "sap.m", properties: { /** * sap.m.P13nConditionOperation */ operation: { type: "string", group: "Misc", defaultValue: null }, /** * key of the column */ columnKey: { type: "string", group: "Misc", defaultValue: null }, /** * make the grouped column as normalcolumn visible */ showIfGrouped: { type: "boolean", group: "Misc", defaultValue: false } } } }); P13nGroupItem.prototype.setColumnKey = function(v) { return this.setProperty("columnKey", v, true); }; P13nGroupItem.prototype.setOperation = function(v) { return this.setProperty("operation", v, true); }; P13nGroupItem.prototype.setShowIfGrouped = function(v) { return this.setProperty("showIfGrouped", v, true); }; return P13nGroupItem; });
Version data entries
3 entries across 3 versions & 1 rubygems