Sha256: b9e5936d73c8f51e7e5b675ae4c2c0b8c36634a761dffa226e0d05b3319d8c56
Contents?: true
Size: 1.53 KB
Versions: 3
Compression:
Stored size: 1.53 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.form.GridLayout. sap.ui.define([ 'jquery.sap.global', 'sap/ui/commons/library', 'sap/ui/layout/form/GridLayout', "./GridLayoutRenderer" ], function(jQuery, library, GridLayout1, GridLayoutRenderer) { "use strict"; /** * Constructor for a new form/GridLayout. * * @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 * This Layout implements a guideline 2.0 grid. This can be a 16 column grid or an 8 column grid. * * To adjust the content inside the GridLayout GridContainerData and GridElementData could be used. * @extends sap.ui.layout.form.GridLayout * * @author SAP SE * @version 1.60.23 * * @constructor * @public * @since 1.9.1 * @deprecated Since version 1.16.0. * moved to sap.ui.layout library. Please use this one. * @alias sap.ui.commons.form.GridLayout * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var GridLayout = GridLayout1.extend("sap.ui.commons.form.GridLayout", /** @lends sap.ui.commons.form.GridLayout.prototype */ { metadata : { deprecated : true, library : "sap.ui.commons" }}); /** * This file defines behavior for the control */ return GridLayout; }, /* bExport= */ true);
Version data entries
3 entries across 3 versions & 1 rubygems