Sha256: d718d36d77485e1d61424b478057f22be8fb75fec22f1cb1b2e3c2ccf69ec1bb
Contents?: true
Size: 1.56 KB
Versions: 3
Compression:
Stored size: 1.56 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.m.OverflowToolbarButton. sap.ui.define(['sap/m/Button', 'sap/m/ButtonRenderer'], function(Button, ButtonRenderer) { "use strict"; /** * Constructor for a new <code>OverflowToolbarButton</code>. * * @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 * Represents an {@link sap.m.Button} that shows its text only when in the overflow area of an {@link sap.m.OverflowToolbar}. * * <b>Note:</b> This control is intended to be used exclusively in the context of the <code>OverflowToolbar</code>, whenever it is required * to have buttons that show only an icon in the toolbar, but icon and text in the overflow menu. * @extends sap.m.Button * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @since 1.28 * @alias sap.m.OverflowToolbarButton * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var OverflowToolbarButton = Button.extend("sap.m.OverflowToolbarButton", /** @lends sap.m.OverflowToolbarButton.prototype */ { renderer: ButtonRenderer.render }); OverflowToolbarButton.prototype._getText = function() { if (this._bInOverflow) { return Button.prototype._getText.call(this); } return ""; }; return OverflowToolbarButton; });
Version data entries
3 entries across 3 versions & 1 rubygems