/* 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_ColumnLayout({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.layout.ContainerLayout","uses":[],"html":"
Hierarchy
Ext.layout.ContainerLayoutExt.layout.ColumnLayoutFiles
This is the layout style of choice for creating structural layouts in a multi-column format where the width of\neach column can be specified as a percentage or fixed width, but the height is allowed to vary based on the content.\nThis class is intended to be extended or created via the layout:'column' Ext.Container.layout config,\nand should generally not need to be created directly via the new keyword.
\n\n\nColumnLayout does not have any direct config options (other than inherited ones), but it does support a\nspecific config property of columnWidth that can be included in the config of any panel added to it. The\nlayout will use the columnWidth (if present) or width of each panel during layout to determine how to size each panel.\nIf width or columnWidth is not specified for a given panel, its width will default to the panel's width (or auto).
\n\n\nThe width property is always evaluated as pixels, and must be a number greater than or equal to 1.\nThe columnWidth property is always evaluated as a percentage, and must be a decimal value greater than 0 and\nless than 1 (e.g., .25).
\n\n\nThe basic rules for specifying column widths are pretty simple. The logic makes two passes through the\nset of contained panels. During the first layout pass, all panels that either have a fixed width or none\nspecified (auto) are skipped, but their widths are subtracted from the overall container width. During the second\npass, all panels with columnWidths are assigned pixel widths in proportion to their percentages based on\nthe total remaining container width. In other words, percentage width panels are designed to fill the space\nleft over by all the fixed-width and/or auto-width panels. Because of this, while you can specify any number of columns\nwith different percentages, the columnWidths must always add up to 1 (or 100%) when added together, otherwise your\nlayout may not render as expected. Example usage:
\n\n\n// All columns are percentages -- they must add up to 1\nvar p = new Ext.Panel({\n title: 'Column Layout - Percentage Only',\n layout:'column',\n items: [{\n title: 'Column 1',\n columnWidth: .25\n },{\n title: 'Column 2',\n columnWidth: .6\n },{\n title: 'Column 3',\n columnWidth: .15\n }]\n});\n\n// Mix of width and columnWidth -- all columnWidth values must add up\n// to 1. The first column will take up exactly 120px, and the last two\n// columns will fill the remaining container width.\nvar p = new Ext.Panel({\n title: 'Column Layout - Mixed',\n layout:'column',\n items: [{\n title: 'Column 1',\n width: 120\n },{\n title: 'Column 2',\n columnWidth: .8\n },{\n title: 'Column 3',\n columnWidth: .2\n }]\n});\n
\n\nAn 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\nDefaults to: 'x-column'
Overrides: Ext.layout.ContainerLayout.extraCls
True 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
\nDestroys this layout. This is a template method that is empty by default, but should be implemented\nby subclasses that require explicit destruction to purge event handlers or remove DOM nodes.
\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