UNPKG

@openui5/sap.m

Version:

OpenUI5 UI Library sap.m

48 lines (42 loc) 1.61 kB
/*! * OpenUI5 * (c) Copyright 2009-2023 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 GroupAction. * @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 GroupAction is a {@link sap.m.Button} control enhanced with styling according to the semantics of a common "Group" action. * * A GroupAction 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.GroupAction} in order to trigger the display of the grouping options. * * If your grouping options are a simple list of items and require single choice only, then you can consider using a {@link sap.m.semantic.GroupSelect} instead. * * @extends sap.m.semantic.SemanticButton * @implements sap.m.semantic.IGroup * * @author SAP SE * @version 1.117.4 * * @constructor * @public * @since 1.30.0 * @alias sap.m.semantic.GroupAction */ var GroupAction = SemanticButton.extend("sap.m.semantic.GroupAction", /** @lends sap.m.semantic.GroupAction.prototype */ { metadata: { library : "sap.m", interfaces : [ "sap.m.semantic.IGroup" ] } }); return GroupAction; });