@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
48 lines (42 loc) • 1.62 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 FilterAction.
* @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 FilterAction is a {@link sap.m.Button} control enhanced with styling according to the semantics of a common "Filter" action.
*
* A FilterAction 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.FilterAction} in order to trigger the display of the filtering options.
*
* If your filtering options are a simple list of items and require single choice only, then you can consider using a {@link sap.m.semantic.FilterSelect} instead.
*
* @extends sap.m.semantic.SemanticButton
* @implements sap.m.semantic.IFilter
*
* @author SAP SE
* @version 1.146.0
*
* @constructor
* @public
* @since 1.30.0
* @alias sap.m.semantic.FilterAction
*/
var FilterAction = SemanticButton.extend("sap.m.semantic.FilterAction", /** @lends sap.m.semantic.FilterAction.prototype */ {
metadata: {
library : "sap.m",
interfaces : [
"sap.m.semantic.IFilter"
]
}
});
return FilterAction;
});