Sha256: 59f39e42d17081865a94cb1555ccdec9baf0e09b3c7dc4a32009b46396e4c9d3
Contents?: true
Size: 1.66 KB
Versions: 3
Compression:
Stored size: 1.66 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 SortSelect. * @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 SortSelect is a {@link sap.m.Select} control enhanced with styling according to the semantics of a common "Sort" acton. * * A SortSelect cannot be used independently but only as aggregation content of a {@link sap.m.semantic.SemanticPage}. * * The sorting options should be added to the <code>items</code> aggregation of {@link sap.m.semantic.SortSelect} 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.SortAction} to trigger the dialog opening. * * @extends sap.m.semantic.SemanticSelect * @implements sap.m.semantic.ISort * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @since 1.30.0 * @alias sap.m.semantic.SortSelect * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var SortSelect = SemanticSelect.extend("sap.m.semantic.SortSelect", /** @lends sap.m.semantic.SortSelect.prototype */ { metadata: { library : "sap.m", interfaces : [ "sap.m.semantic.ISort" ] } }); return SortSelect; });
Version data entries
3 entries across 3 versions & 1 rubygems