Sha256: bda94528868d24e2a24f0b43da2e3627dd1d7c0e1d5f42bd2ea00c4cdfcbb1bc
Contents?: true
Size: 1.69 KB
Versions: 3
Compression:
Stored size: 1.69 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. */ sap.ui.define(['sap/m/semantic/SemanticSelect'], function(SemanticSelect) { "use strict"; /** * Constructor for a new FilterSelect. * @param {string} [sId] ID for the new control, generated automatically if no ID is given * @param {object} [mSettings] Custom initial settings for the new control * * @class * A FilterSelect is a {@link sap.m.Select} control enhanced with styling according to the semantics of a common "Filter" acton. * * A FilterSelect cannot be used independently but only as aggregation content of a {@link sap.m.semantic.SemanticPage}. * * The filtering options should be added to the <code>items</code> aggregation of {@link sap.m.semantic.FilterSelect} and will be displayed as a pop-up list with support for single-item selection. * If this simple popup list is not sufficient for your use case, you can implement your own custom dialog by using {@link sap.m.semantic.FilterAction} to trigger the dialog opening. * * @extends sap.m.semantic.SemanticSelect * @implements sap.m.semantic.IFilter * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @since 1.30.0 * @alias sap.m.semantic.FilterSelect * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var FilterSelect = SemanticSelect.extend("sap.m.semantic.FilterSelect", /** @lends sap.m.semantic.FilterSelect.prototype */ { metadata: { library : "sap.m", interfaces : [ "sap.m.semantic.IFilter" ] } }); return FilterSelect; });
Version data entries
3 entries across 3 versions & 1 rubygems