Sha256: 3cf4c36c501965fde8e3fae8688e7e27c7937a9d49c78ff7674921e759d31abb
Contents?: true
Size: 1.61 KB
Versions: 3
Compression:
Stored size: 1.61 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/SemanticButton'], function(SemanticButton) { "use strict"; /** * Constructor for a new SortAction. * @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 SortAction is a {@link sap.m.Button} control enhanced with styling according to the semantics of a common "Sort" action. * * A SortAction cannot be used independently but only as aggregation content of a {@link sap.m.semantic.SemanticPage}. * * Your app should listen to the <code>press</code> event of {@link sap.m.semantic.SortAction} in order to trigger the display of the sorting options. * * If your sorting options are a simple list of items and require single choice only, then you can consider using a {@link sap.m.semantic.SortSelect} instead. * * @extends sap.m.semantic.SemanticButton * @implements sap.m.semantic.ISort * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @since 1.30.0 * @alias sap.m.semantic.SortAction * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var SortAction = SemanticButton.extend("sap.m.semantic.SortAction", /** @lends sap.m.semantic.SortAction.prototype */ { metadata: { library : "sap.m", interfaces : [ "sap.m.semantic.ISort" ] } }); return SortAction; });
Version data entries
3 entries across 3 versions & 1 rubygems