Sha256: 1c5ec2ed34310b2b7c7be6e718c67ab82e0047f5371633f3e977c8830320996d
Contents?: true
Size: 1.59 KB
Versions: 3
Compression:
Stored size: 1.59 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. */ // Provides control sap.ui.commons.Menu. sap.ui.define([ 'jquery.sap.global', './MenuItemBase', './library', 'sap/ui/unified/Menu', "./MenuRenderer" ], function(jQuery, MenuItemBase, library, Menu1, MenuRenderer) { "use strict"; /** * Constructor for a new Menu control. * * @param {string} [sId] Id for the new control, generated automatically if no id is given * @param {object} [mSettings] Initial settings for the new control * * @class * A menu is an interactive element which provides a choice of different actions to the user. These actions (items) can also be organized in submenus. * Like other dialog-like controls, the menu is not rendered within the control hierarchy. Instead it can be opened at a specified position via a function call. * @extends sap.ui.unified.Menu * * @author SAP SE * @version 1.60.23 * @since 1.0.0 * * @constructor * @public * @deprecated as of version 1.21.0, replaced by {@link sap.ui.unified.Menu} * @alias sap.ui.commons.Menu * @ui5-metamodel This control/element will also be described in the UI5 (legacy) design time meta model */ var Menu = Menu1.extend("sap.ui.commons.Menu", /** @lends sap.ui.commons.Menu.prototype */ { metadata : { deprecated : true, library : "sap.ui.commons" }}); Menu.prototype.bCozySupported = false; /*Ensure MenuItemBase is loaded (incl. loading of unified library)*/ return Menu; }, /* bExport= */ true);
Version data entries
3 entries across 3 versions & 1 rubygems