Sha256: 6cbf4a50688e236781eacf31c3ee9f419d1e4ca9d41af1fb0a586901cf760169
Contents?: true
Size: 1.49 KB
Versions: 3
Compression:
Stored size: 1.49 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.P13nAnyFilterItem. sap.ui.define([ './library', 'sap/m/P13nFilterItem' ], function(library, P13nFilterItem) { "use strict"; /** * Constructor for a new P13nAnyFilterItem. The class extends sap.m.P13nFilterItem and changes the value1 and value2 properties type to any. * * @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>filterItems</code> aggregation in P13nFilterPanel control. * @extends sap.m.P13nFilterItem * @version 1.60.23 * @constructor * @private * @since 1.56.0 * @alias sap.m.P13nAnyFilterItem * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var P13nAnyFilterItem = P13nFilterItem.extend("sap.m.P13nAnyFilterItem", /** @lends sap.m.P13nAnyFilterItem.prototype */ { metadata: { library: "sap.m", properties: { /** * value of the filter. Type of value1 is any. */ value1: { type: "any", group: "Misc", defaultValue: null }, /** * to value of the between filter. Type of value2 is any. */ value2: { type: "any", group: "Misc", defaultValue: null } } } }); return P13nAnyFilterItem; });
Version data entries
3 entries across 3 versions & 1 rubygems