/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_layout_BorderLayout({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.layout.ContainerLayout","uses":[],"html":"
Hierarchy
Ext.layout.ContainerLayoutExt.layout.BorderLayoutFiles
This is a multi-pane, application-oriented UI layout style that supports multiple\nnested panels, automatic split bars between\nregions and built-in\nexpanding and collapsing of regions.
\n\n\nThis class is intended to be extended or created via the layout:'border'\nExt.Container.layout config, and should generally not need to be created directly\nvia the new keyword.
\n\n\nBorderLayout does not have any direct config options (other than inherited ones).\nAll configuration options available for customizing the BorderLayout are at the\nExt.layout.BorderLayout.Region and Ext.layout.BorderLayout.SplitRegion\nlevels.
\n\n\nExample usage:
\n\n\nvar myBorderPanel = new Ext.Panel({\n renderTo: document.body,\n width: 700,\n height: 500,\n title: 'Border Layout',\n layout: 'border',\n items: [{\n title: 'South Region is resizable',\n region: 'south', // position for region\n height: 100,\n split: true, // enable resizing\n minSize: 75, // defaults to 50\n maxSize: 150,\n margins: '0 5 5 5'\n },{\n // xtype: 'panel' implied by default\n title: 'West Region is collapsible',\n region:'west',\n margins: '5 0 0 5',\n width: 200,\n collapsible: true, // make collapsible\n cmargins: '5 5 0 5', // adjust top margin when collapsed\n id: 'west-region-container',\n layout: 'fit',\n unstyled: true\n },{\n title: 'Center Region',\n region: 'center', // center region is required, no width/height specified\n xtype: 'container',\n layout: 'fit',\n margins: '5 5 0 0'\n }]\n});\n
\n\n\nNotes:
\n\n\nwrc = Ext.getCmp('west-region-container');\nwrc.removeAll();\nwrc.add({\n title: 'Added Panel',\n html: 'Some content'\n});\nwrc.doLayout();\n
wr = myBorderPanel.layout.west;\n
An optional extra CSS class that will be added to the container. This can be useful for adding\ncustomized styles to the container or any of its children using standard CSS rules. See\nExt.Component.ctCls also.
\n\n\nNote: extraCls defaults to '' except for the following classes\nwhich assign a value by default:\n
extraCls: 'x-column custom-class'\n
\n\n\nTrue to hide each contained item on render (defaults to false).
\nTrue to hide each contained item on render (defaults to false).
\nThe Ext.Template used by Field rendering layout classes (such as\nExt.layout.FormLayout) to create the DOM structure of a fully wrapped,\nlabeled and styled form Field. A default Template is supplied, but this may be\noverriden to create custom field structures. The template processes values returned from\nExt.layout.FormLayout.getTemplateArgs.
\nPlaceholder for the derived layouts
\nPlaceholder for the derived layouts
\nWorkaround for how IE measures autoWidth elements. It prefers bottom-up measurements
\n\n whereas other browser prefer top-down. We will hide all target child elements before we measure and\n put them back to get an accurate measurement.\n
\nApplies extraCls and hides the item if renderHidden is true
\nprivate.\nGet all rendered items to lay out.
\nParses a number or string representing margin sizes into an object. Supports CSS-style margin declarations\n(e.g. 10, \"10\", \"10 10\", \"10 10 10\" and \"10 10 10 10\" are all valid options and would return the same result)
\nAn object with margin sizes for top, right, bottom and left
\nRenders the given Component into the target Element. If the Component is already rendered,\nit is moved to the provided target instead.
\nThe Component to render
\n\nThe position within the target to render the item to
\n\nThe target Element
\n\n