@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
48 lines (42 loc) • 1.59 kB
JavaScript
/*!
* OpenUI5
* (c) Copyright 2026 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] Optional initial settings for the new control: a map/JSON-object with initial property values, event listeners etc. for the new object
*
* @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.146.0
*
* @constructor
* @public
* @since 1.30.0
* @alias sap.m.semantic.SortAction
*/
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;
});