Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / source / Column.html
index 4c2c4c4..ec75943 100644 (file)
-<html>\r
-<head>\r
-  <title>The source code</title>\r
-    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
-    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
-</head>\r
-<body  onload="prettyPrint();">\r
-    <pre class="prettyprint lang-js"><div id="cls-Ext.grid.Column"></div>/**\r
- * @class Ext.grid.Column\r
- * <p>This class encapsulates column configuration data to be used in the initialization of a\r
- * {@link Ext.grid.ColumnModel ColumnModel}.</p>\r
- * <p>While subclasses are provided to render data in different ways, this class renders a passed\r
- * data field unchanged and is usually used for textual columns.</p>\r
- */\r
-Ext.grid.Column = function(config){\r
-    Ext.apply(this, config);\r
-\r
-    if(typeof this.renderer == 'string'){\r
-        this.renderer = Ext.util.Format[this.renderer];\r
-    } else if(Ext.isObject(this.renderer)){\r
-        this.scope = this.renderer.scope;\r
-        this.renderer = this.renderer.fn;\r
-    }\r
-    this.renderer = this.renderer.createDelegate(this.scope || config);\r
-\r
-    if(this.id === undefined){\r
-        this.id = ++Ext.grid.Column.AUTO_ID;\r
-    }\r
-    if(this.editor){\r
-        this.editor = Ext.create(this.editor, 'textfield');\r
-    }\r
-};\r
-\r
-Ext.grid.Column.AUTO_ID = 0;\r
-\r
-Ext.grid.Column.prototype = {\r
-    <div id="cfg-Ext.grid.Column-editable"></div>/**\r
-     * @cfg {Boolean} editable Optional. Defaults to <tt>true</tt>, enabling the configured\r
-     * <tt>{@link #editor}</tt>.  Set to <tt>false</tt> to initially disable editing on this column.\r
-     * The initial configuration may be dynamically altered using\r
-     * {@link Ext.grid.ColumnModel}.{@link Ext.grid.ColumnModel#setEditable setEditable()}.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-id"></div>/**\r
-     * @cfg {String} id Optional. A name which identifies this column (defaults to the column's initial\r
-     * ordinal position.) The <tt>id</tt> is used to create a CSS <b>class</b> name which is applied to all\r
-     * table cells (including headers) in that column (in this context the <tt>id</tt> does not need to be\r
-     * unique). The class name takes the form of <pre>x-grid3-td-<b>id</b></pre>\r
-     * Header cells will also receive this class name, but will also have the class <pre>x-grid3-hd</pre>\r
-     * So, to target header cells, use CSS selectors such as:<pre>.x-grid3-hd-row .x-grid3-td-<b>id</b></pre>\r
-     * The {@link Ext.grid.GridPanel#autoExpandColumn} grid config option references the column via this\r
-     * unique identifier.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-header"></div>/**\r
-     * @cfg {String} header Optional. The header text to be used as innerHTML\r
-     * (html tags are accepted) to display in the Grid view.  <b>Note</b>: to\r
-     * have a clickable header with no text displayed use <tt>'&#160;'</tt>.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-groupable"></div>/**\r
-     * @cfg {Boolean} groupable Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option\r
-     * may be used to disable the header menu item to group by the column selected. Defaults to <tt>true</tt>,\r
-     * which enables the header menu group option.  Set to <tt>false</tt> to disable (but still show) the\r
-     * group option in the header menu for the column. See also <code>{@link #groupName}</code>.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-groupName"></div>/**\r
-     * @cfg {String} groupName Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option\r
-     * may be used to specify the text with which to prefix the group field value in the group header line.\r
-     * See also {@link #groupRenderer} and\r
-     * {@link Ext.grid.GroupingView}.{@link Ext.grid.GroupingView#showGroupName showGroupName}.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-groupRenderer"></div>/**\r
-     * @cfg {Function} groupRenderer <p>Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option\r
-     * may be used to specify the function used to format the grouping field value for display in the group\r
-     * {@link #groupName header}.  If a <tt><b>groupRenderer</b></tt> is not specified, the configured\r
-     * <tt><b>{@link #renderer}</b></tt> will be called; if a <tt><b>{@link #renderer}</b></tt> is also not specified\r
-     * the new value of the group field will be used.</p>\r
-     * <p>The called function (either the <tt><b>groupRenderer</b></tt> or <tt><b>{@link #renderer}</b></tt>) will be\r
-     * passed the following parameters:\r
-     * <div class="mdetail-params"><ul>\r
-     * <li><b>v</b> : Object<p class="sub-desc">The new value of the group field.</p></li>\r
-     * <li><b>unused</b> : undefined<p class="sub-desc">Unused parameter.</p></li>\r
-     * <li><b>r</b> : Ext.data.Record<p class="sub-desc">The Record providing the data\r
-     * for the row which caused group change.</p></li>\r
-     * <li><b>rowIndex</b> : Number<p class="sub-desc">The row index of the Record which caused group change.</p></li>\r
-     * <li><b>colIndex</b> : Number<p class="sub-desc">The column index of the group field.</p></li>\r
-     * <li><b>ds</b> : Ext.data.Store<p class="sub-desc">The Store which is providing the data Model.</p></li>\r
-     * </ul></div></p>\r
-     * <p>The function should return a string value.</p>\r
-     */\r
-    <div id="cfg-Ext.grid.Column-emptyGroupText"></div>/**\r
-     * @cfg {String} emptyGroupText Optional. If the grid is being rendered by an {@link Ext.grid.GroupingView}, this option\r
-     * may be used to specify the text to display when there is an empty group value. Defaults to the\r
-     * {@link Ext.grid.GroupingView}.{@link Ext.grid.GroupingView#emptyGroupText emptyGroupText}.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-dataIndex"></div>/**\r
-     * @cfg {String} dataIndex <p><b>Required</b>. The name of the field in the\r
-     * grid's {@link Ext.data.Store}'s {@link Ext.data.Record} definition from\r
-     * which to draw the column's value.</p>\r
-     */\r
-    <div id="cfg-Ext.grid.Column-width"></div>/**\r
-     * @cfg {Number} width\r
-     * Optional. The initial width in pixels of the column.\r
-     * The width of each column can also be affected if any of the following are configured:\r
-     * <div class="mdetail-params"><ul>\r
-     * <li>{@link Ext.grid.GridPanel}.<tt>{@link Ext.grid.GridPanel#autoExpandColumn autoExpandColumn}</tt></li>\r
-     * <li>{@link Ext.grid.GridView}.<tt>{@link Ext.grid.GridView#forceFit forceFit}</tt>\r
-     * <div class="sub-desc">\r
-     * <p>By specifying <tt>forceFit:true</tt>, {@link #fixed non-fixed width} columns will be\r
-     * re-proportioned (based on the relative initial widths) to fill the width of the grid so\r
-     * that no horizontal scrollbar is shown.</p>\r
-     * </div></li>\r
-     * <li>{@link Ext.grid.GridView}.<tt>{@link Ext.grid.GridView#autoFill autoFill}</tt></li>\r
-     * <li>{@link Ext.grid.GridPanel}.<tt>{@link Ext.grid.GridPanel#minColumnWidth minColumnWidth}</tt></li>\r
-     * <br><p><b>Note</b>: when the width of each column is determined, a space on the right side\r
-     * is reserved for the vertical scrollbar.  The\r
-     * {@link Ext.grid.GridView}.<tt>{@link Ext.grid.GridView#scrollOffset scrollOffset}</tt>\r
-     * can be modified to reduce or eliminate the reserved offset.</p>\r
-     */\r
-    <div id="cfg-Ext.grid.Column-sortable"></div>/**\r
-     * @cfg {Boolean} sortable Optional. <tt>true</tt> if sorting is to be allowed on this column.\r
-     * Defaults to the value of the {@link #defaultSortable} property.\r
-     * Whether local/remote sorting is used is specified in {@link Ext.data.Store#remoteSort}.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-fixed"></div>/**\r
-     * @cfg {Boolean} fixed Optional. <tt>true</tt> if the column width cannot be changed.  Defaults to <tt>false</tt>.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-resizable"></div>/**\r
-     * @cfg {Boolean} resizable Optional. <tt>false</tt> to disable column resizing. Defaults to <tt>true</tt>.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-menuDisabled"></div>/**\r
-     * @cfg {Boolean} menuDisabled Optional. <tt>true</tt> to disable the column menu. Defaults to <tt>false</tt>.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-hidden"></div>/**\r
-     * @cfg {Boolean} hidden Optional. <tt>true</tt> to hide the column. Defaults to <tt>false</tt>.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-tooltip"></div>/**\r
-     * @cfg {String} tooltip Optional. A text string to use as the column header's tooltip.  If Quicktips\r
-     * are enabled, this value will be used as the text of the quick tip, otherwise it will be set as the\r
-     * header's HTML title attribute. Defaults to ''.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-renderer"></div>/**\r
-     * @cfg {Mixed} renderer\r
-     * <p>For an alternative to specifying a renderer see <code>{@link #xtype}</code></p>\r
-     * <p>Optional. A renderer is an 'interceptor' method which can be used transform data (value,\r
-     * appearance, etc.) before it is rendered). This may be specified in either of three ways:\r
-     * <div class="mdetail-params"><ul>\r
-     * <li>A renderer function used to return HTML markup for a cell given the cell's data value.</li>\r
-     * <li>A string which references a property name of the {@link Ext.util.Format} class which\r
-     * provides a renderer function.</li>\r
-     * <li>An object specifying both the renderer function, and its execution scope (<tt><b>this</b></tt>\r
-     * reference) e.g.:<pre style="margin-left:1.2em"><code>\r
-{\r
-    fn: this.gridRenderer,\r
-    scope: this\r
-}\r
-</code></pre></li></ul></div>\r
-     * If not specified, the default renderer uses the raw data value.</p>\r
-     * <p>For information about the renderer function (passed parameters, etc.), see\r
-     * {@link Ext.grid.ColumnModel#setRenderer}. An example of specifying renderer function inline:</p><pre><code>\r
-var companyColumn = {\r
-   header: 'Company Name',\r
-   dataIndex: 'company',\r
-   renderer: function(value, metaData, record, rowIndex, colIndex, store) {\r
-      // provide the logic depending on business rules\r
-      // name of your own choosing to manipulate the cell depending upon\r
-      // the data in the underlying Record object.\r
-      if (value == 'whatever') {\r
-          //metaData.css : String : A CSS class name to add to the TD element of the cell.\r
-          //metaData.attr : String : An html attribute definition string to apply to\r
-          //                         the data container element within the table\r
-          //                         cell (e.g. 'style="color:red;"').\r
-          metaData.css = 'name-of-css-class-you-will-define';\r
-      }\r
-      return value;\r
-   }\r
-}\r
-     * </code></pre>\r
-     * See also {@link #scope}.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-xtype"></div>/**\r
-     * @cfg {String} xtype Optional. A String which references a predefined {@link Ext.grid.Column} subclass\r
-     * type which is preconfigured with an appropriate <code>{@link #renderer}</code> to be easily\r
-     * configured into a ColumnModel. The predefined {@link Ext.grid.Column} subclass types are:\r
-     * <div class="mdetail-params"><ul>\r
-     * <li><b><tt>gridcolumn</tt></b> : {@link Ext.grid.Column} (<b>Default</b>)<p class="sub-desc"></p></li>\r
-     * <li><b><tt>booleancolumn</tt></b> : {@link Ext.grid.BooleanColumn}<p class="sub-desc"></p></li>\r
-     * <li><b><tt>numbercolumn</tt></b> : {@link Ext.grid.NumberColumn}<p class="sub-desc"></p></li>\r
-     * <li><b><tt>datecolumn</tt></b> : {@link Ext.grid.DateColumn}<p class="sub-desc"></p></li>\r
-     * <li><b><tt>templatecolumn</tt></b> : {@link Ext.grid.TemplateColumn}<p class="sub-desc"></p></li>\r
-     * </ul></div>\r
-     * <p>Configuration properties for the specified <code>xtype</code> may be specified with\r
-     * the Column configuration properties, for example:</p>\r
-     * <pre><code>\r
-var grid = new Ext.grid.GridPanel({\r
-    ...\r
-    columns: [{\r
-        header: 'Last Updated',\r
-        dataIndex: 'lastChange',\r
-        width: 85,\r
-        sortable: true,\r
-        //renderer: Ext.util.Format.dateRenderer('m/d/Y'),\r
-        xtype: 'datecolumn', // use xtype instead of renderer\r
-        format: 'M/d/Y' // configuration property for {@link Ext.grid.DateColumn}\r
-    }, {\r
-        ...\r
-    }]\r
-});\r
-     * </code></pre>\r
-     */\r
-    <div id="cfg-Ext.grid.Column-scope"></div>/**\r
-     * @cfg {Object} scope Optional. The scope (<tt><b>this</b></tt> reference) in which to execute the\r
-     * renderer.  Defaults to the Column configuration object.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-align"></div>/**\r
-     * @cfg {String} align Optional. Set the CSS text-align property of the column.  Defaults to undefined.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-css"></div>/**\r
-     * @cfg {String} css Optional. An inline style definition string which is applied to all table cells in the column\r
-     * (excluding headers). Defaults to undefined.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-hideable"></div>/**\r
-     * @cfg {Boolean} hideable Optional. Specify as <tt>false</tt> to prevent the user from hiding this column\r
-     * (defaults to true).  To disallow column hiding globally for all columns in the grid, use\r
-     * {@link Ext.grid.GridPanel#enableColumnHide} instead.\r
-     */\r
-    <div id="cfg-Ext.grid.Column-editor"></div>/**\r
-     * @cfg {Ext.form.Field} editor Optional. The {@link Ext.form.Field} to use when editing values in this column\r
-     * if editing is supported by the grid. See <tt>{@link #editable}</tt> also.\r
-     */\r
-\r
-    // private. Used by ColumnModel to avoid reprocessing\r
-    isColumn : true,\r
-    <div id="prop-Ext.grid.Column-renderer"></div>/**\r
-     * Optional. A function which returns displayable data when passed the following parameters:\r
-     * <div class="mdetail-params"><ul>\r
-     * <li><b>value</b> : Object<p class="sub-desc">The data value for the cell.</p></li>\r
-     * <li><b>metadata</b> : Object<p class="sub-desc">An object in which you may set the following attributes:<ul>\r
-     * <li><b>css</b> : String<p class="sub-desc">A CSS class name to add to the cell's TD element.</p></li>\r
-     * <li><b>attr</b> : String<p class="sub-desc">An HTML attribute definition string to apply to the data container\r
-     * element <i>within</i> the table cell (e.g. 'style="color:red;"').</p></li></ul></p></li>\r
-     * <li><b>record</b> : Ext.data.record<p class="sub-desc">The {@link Ext.data.Record} from which the data was\r
-     * extracted.</p></li>\r
-     * <li><b>rowIndex</b> : Number<p class="sub-desc">Row index</p></li>\r
-     * <li><b>colIndex</b> : Number<p class="sub-desc">Column index</p></li>\r
-     * <li><b>store</b> : Ext.data.Store<p class="sub-desc">The {@link Ext.data.Store} object from which the Record\r
-     * was extracted.</p></li>\r
-     * </ul></div>\r
-     * @property renderer\r
-     * @type Function\r
-     */\r
-    renderer : function(value){\r
-        if(typeof value == 'string' && value.length < 1){\r
-            return '&#160;';\r
-        }\r
-        return value;\r
-    },\r
-\r
-    // private\r
-    getEditor: function(rowIndex){\r
-        return this.editable !== false ? this.editor : null;\r
-    },\r
-\r
-    <div id="method-Ext.grid.Column-getCellEditor"></div>/**\r
-     * Returns the {@link Ext.Editor editor} defined for this column that was created to wrap the {@link Ext.form.Field Field}\r
-     * used to edit the cell.\r
-     * @param {Number} rowIndex The row index\r
-     * @return {Ext.Editor}\r
-     */\r
-    getCellEditor: function(rowIndex){\r
-        var editor = this.getEditor(rowIndex);\r
-        if(editor){\r
-            if(!editor.startEdit){\r
-                if(!editor.gridEditor){\r
-                    editor.gridEditor = new Ext.grid.GridEditor(editor);\r
-                }\r
-                return editor.gridEditor;\r
-            }else if(editor.startEdit){\r
-                return editor;\r
-            }\r
-        }\r
-        return null;\r
-    }\r
-};\r
-\r
-<div id="cls-Ext.grid.BooleanColumn"></div>/**\r
- * @class Ext.grid.BooleanColumn\r
- * @extends Ext.grid.Column\r
- * <p>A Column definition class which renders boolean data fields.  See the {@link Ext.grid.ColumnModel#xtype xtype}\r
- * config option of {@link Ext.grid.ColumnModel} for more details.</p>\r
- */\r
-Ext.grid.BooleanColumn = Ext.extend(Ext.grid.Column, {\r
-    <div id="cfg-Ext.grid.BooleanColumn-trueText"></div>/**\r
-     * @cfg {String} trueText\r
-     * The string returned by the renderer when the column value is not falsey (defaults to <tt>'true'</tt>).\r
-     */\r
-    trueText: 'true',\r
-    <div id="cfg-Ext.grid.BooleanColumn-falseText"></div>/**\r
-     * @cfg {String} falseText\r
-     * The string returned by the renderer when the column value is falsey (but not undefined) (defaults to\r
-     * <tt>'false'</tt>).\r
-     */\r
-    falseText: 'false',\r
-    <div id="cfg-Ext.grid.BooleanColumn-undefinedText"></div>/**\r
-     * @cfg {String} undefinedText\r
-     * The string returned by the renderer when the column value is undefined (defaults to <tt>'&#160;'</tt>).\r
-     */\r
-    undefinedText: '&#160;',\r
-\r
-    constructor: function(cfg){\r
-        Ext.grid.BooleanColumn.superclass.constructor.call(this, cfg);\r
-        var t = this.trueText, f = this.falseText, u = this.undefinedText;\r
-        this.renderer = function(v){\r
-            if(v === undefined){\r
-                return u;\r
-            }\r
-            if(!v || v === 'false'){\r
-                return f;\r
-            }\r
-            return t;\r
-        };\r
-    }\r
-});\r
-\r
-<div id="cls-Ext.grid.NumberColumn"></div>/**\r
- * @class Ext.grid.NumberColumn\r
- * @extends Ext.grid.Column\r
- * <p>A Column definition class which renders a numeric data field according to a {@link #format} string.  See the\r
- * {@link Ext.grid.ColumnModel#xtype xtype} config option of {@link Ext.grid.ColumnModel} for more details.</p>\r
- */\r
-Ext.grid.NumberColumn = Ext.extend(Ext.grid.Column, {\r
-    <div id="cfg-Ext.grid.NumberColumn-format"></div>/**\r
-     * @cfg {String} format\r
-     * A formatting string as used by {@link Ext.util.Format#number} to format a numeric value for this Column\r
-     * (defaults to <tt>'0,000.00'</tt>).\r
-     */\r
-    format : '0,000.00',\r
-    constructor: function(cfg){\r
-        Ext.grid.NumberColumn.superclass.constructor.call(this, cfg);\r
-        this.renderer = Ext.util.Format.numberRenderer(this.format);\r
-    }\r
-});\r
-\r
-<div id="cls-Ext.grid.DateColumn"></div>/**\r
- * @class Ext.grid.DateColumn\r
- * @extends Ext.grid.Column\r
- * <p>A Column definition class which renders a passed date according to the default locale, or a configured\r
- * {@link #format}. See the {@link Ext.grid.ColumnModel#xtype xtype} config option of {@link Ext.grid.ColumnModel}\r
- * for more details.</p>\r
- */\r
-Ext.grid.DateColumn = Ext.extend(Ext.grid.Column, {\r
-    <div id="cfg-Ext.grid.DateColumn-format"></div>/**\r
-     * @cfg {String} format\r
-     * A formatting string as used by {@link Date#format} to format a Date for this Column\r
-     * (defaults to <tt>'m/d/Y'</tt>).\r
-     */\r
-    format : 'm/d/Y',\r
-    constructor: function(cfg){\r
-        Ext.grid.DateColumn.superclass.constructor.call(this, cfg);\r
-        this.renderer = Ext.util.Format.dateRenderer(this.format);\r
-    }\r
-});\r
-\r
-<div id="cls-Ext.grid.TemplateColumn"></div>/**\r
- * @class Ext.grid.TemplateColumn\r
- * @extends Ext.grid.Column\r
- * <p>A Column definition class which renders a value by processing a {@link Ext.data.Record Record}'s\r
- * {@link Ext.data.Record#data data} using a {@link #tpl configured} {@link Ext.XTemplate XTemplate}.\r
- * See the {@link Ext.grid.ColumnModel#xtype xtype} config option of {@link Ext.grid.ColumnModel} for more\r
- * details.</p>\r
- */\r
-Ext.grid.TemplateColumn = Ext.extend(Ext.grid.Column, {\r
-    <div id="cfg-Ext.grid.TemplateColumn-tpl"></div>/**\r
-     * @cfg {String/XTemplate} tpl\r
-     * An {@link Ext.XTemplate XTemplate}, or an XTemplate <i>definition string</i> to use to process a\r
-     * {@link Ext.data.Record Record}'s {@link Ext.data.Record#data data} to produce a column's rendered value.\r
-     */\r
-    constructor: function(cfg){\r
-        Ext.grid.TemplateColumn.superclass.constructor.call(this, cfg);\r
-        var tpl = typeof Ext.isObject(this.tpl) ? this.tpl : new Ext.XTemplate(this.tpl);\r
-        this.renderer = function(value, p, r){\r
-            return tpl.apply(r.data);\r
-        };\r
-        this.tpl = tpl;\r
-    }\r
-});\r
-\r
-/*\r
- * @property types\r
- * @type Object\r
- * @member Ext.grid.Column\r
- * @static\r
- * <p>An object containing predefined Column classes keyed by a mnemonic code which may be referenced\r
- * by the {@link Ext.grid.ColumnModel#xtype xtype} config option of ColumnModel.</p>\r
- * <p>This contains the following properties</p><div class="mdesc-details"><ul>\r
- * <li>gridcolumn : <b>{@link Ext.grid.Column Column constructor}</b></li>\r
- * <li>booleancolumn : <b>{@link Ext.grid.BooleanColumn BooleanColumn constructor}</b></li>\r
- * <li>numbercolumn : <b>{@link Ext.grid.NumberColumn NumberColumn constructor}</b></li>\r
- * <li>datecolumn : <b>{@link Ext.grid.DateColumn DateColumn constructor}</b></li>\r
- * <li>templatecolumn : <b>{@link Ext.grid.TemplateColumn TemplateColumn constructor}</b></li>\r
- * </ul></div>\r
- */\r
-Ext.grid.Column.types = {\r
-    gridcolumn : Ext.grid.Column,\r
-    booleancolumn: Ext.grid.BooleanColumn,\r
-    numbercolumn: Ext.grid.NumberColumn,\r
-    datecolumn: Ext.grid.DateColumn,\r
-    templatecolumn: Ext.grid.TemplateColumn\r
-};</pre>    \r
-</body>\r
-</html>
\ No newline at end of file
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <title>The source code</title>
+  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <style type="text/css">
+    .highlight { display: block; background-color: #ddd; }
+  </style>
+  <script type="text/javascript">
+    function highlight() {
+      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
+    }
+  </script>
+</head>
+<body onload="prettyPrint(); highlight();">
+  <pre class="prettyprint lang-js"><span id='Ext-layout-container-Column'>/**
+</span> * @class Ext.layout.container.Column
+ * @extends Ext.layout.container.Auto
+ * &lt;p&gt;This is the layout style of choice for creating structural layouts in a multi-column format where the width of
+ * each column can be specified as a percentage or fixed width, but the height is allowed to vary based on the content.
+ * This class is intended to be extended or created via the layout:'column' {@link Ext.container.Container#layout} config,
+ * and should generally not need to be created directly via the new keyword.&lt;/p&gt;
+ * &lt;p&gt;ColumnLayout does not have any direct config options (other than inherited ones), but it does support a
+ * specific config property of &lt;b&gt;&lt;tt&gt;columnWidth&lt;/tt&gt;&lt;/b&gt; that can be included in the config of any panel added to it.  The
+ * layout will use the columnWidth (if present) or width of each panel during layout to determine how to size each panel.
+ * If width or columnWidth is not specified for a given panel, its width will default to the panel's width (or auto).&lt;/p&gt;
+ * &lt;p&gt;The width property is always evaluated as pixels, and must be a number greater than or equal to 1.
+ * The columnWidth property is always evaluated as a percentage, and must be a decimal value greater than 0 and
+ * less than 1 (e.g., .25).&lt;/p&gt;
+ * &lt;p&gt;The basic rules for specifying column widths are pretty simple.  The logic makes two passes through the
+ * set of contained panels.  During the first layout pass, all panels that either have a fixed width or none
+ * specified (auto) are skipped, but their widths are subtracted from the overall container width.  During the second
+ * pass, all panels with columnWidths are assigned pixel widths in proportion to their percentages based on
+ * the total &lt;b&gt;remaining&lt;/b&gt; container width.  In other words, percentage width panels are designed to fill the space
+ * left over by all the fixed-width and/or auto-width panels.  Because of this, while you can specify any number of columns
+ * with different percentages, the columnWidths must always add up to 1 (or 100%) when added together, otherwise your
+ * layout may not render as expected.  
+ * {@img Ext.layout.container.Column/Ext.layout.container.Column1.png Ext.layout.container.Column container layout}
+ * Example usage:&lt;/p&gt;
+ * &lt;pre&gt;&lt;code&gt;
+    // All columns are percentages -- they must add up to 1
+    Ext.create('Ext.panel.Panel', {
+        title: 'Column Layout - Percentage Only',
+        width: 350,
+        height: 250,
+        layout:'column',
+        items: [{
+            title: 'Column 1',
+            columnWidth: .25
+        },{
+            title: 'Column 2',
+            columnWidth: .55
+        },{
+            title: 'Column 3',
+            columnWidth: .20
+        }],
+        renderTo: Ext.getBody()
+    }); 
+
+// {@img Ext.layout.container.Column/Ext.layout.container.Column2.png Ext.layout.container.Column container layout}
+// Mix of width and columnWidth -- all columnWidth values must add up
+// to 1. The first column will take up exactly 120px, and the last two
+// columns will fill the remaining container width.
+
+    Ext.create('Ext.Panel', {
+        title: 'Column Layout - Mixed',
+        width: 350,
+        height: 250,
+        layout:'column',
+        items: [{
+            title: 'Column 1',
+            width: 120
+        },{
+            title: 'Column 2',
+            columnWidth: .7
+        },{
+            title: 'Column 3',
+            columnWidth: .3
+        }],
+        renderTo: Ext.getBody()
+    }); 
+&lt;/code&gt;&lt;/pre&gt;
+ */
+Ext.define('Ext.layout.container.Column', {
+
+    extend: 'Ext.layout.container.Auto',
+    alias: ['layout.column'],
+    alternateClassName: 'Ext.layout.ColumnLayout',
+
+    type: 'column',
+
+    itemCls: Ext.baseCSSPrefix + 'column',
+
+    targetCls: Ext.baseCSSPrefix + 'column-layout-ct',
+
+    scrollOffset: 0,
+
+    bindToOwnerCtComponent: false,
+
+    getRenderTarget : function() {
+        if (!this.innerCt) {
+
+            // the innerCt prevents wrapping and shuffling while
+            // the container is resizing
+            this.innerCt = this.getTarget().createChild({
+                cls: Ext.baseCSSPrefix + 'column-inner'
+            });
+
+            // Column layout uses natural HTML flow to arrange the child items.
+            // To ensure that all browsers (I'm looking at you IE!) add the bottom margin of the last child to the
+            // containing element height, we create a zero-sized element with style clear:both to force a &quot;new line&quot;
+            this.clearEl = this.innerCt.createChild({
+                cls: Ext.baseCSSPrefix + 'clear',
+                role: 'presentation'
+            });
+        }
+        return this.innerCt;
+    },
+
+    // private
+    onLayout : function() {
+        var me = this,
+            target = me.getTarget(),
+            items = me.getLayoutItems(),
+            len = items.length,
+            item,
+            i,
+            parallelMargins = [],
+            itemParallelMargins,
+            size,
+            availableWidth,
+            columnWidth;
+
+        size = me.getLayoutTargetSize();
+        if (size.width &lt; len * 10) { // Don't lay out in impossibly small target (probably display:none, or initial, unsized Container)
+            return;
+        }
+
+        // On the first pass, for all except IE6-7, we lay out the items with no scrollbars visible using style overflow: hidden.
+        // If, after the layout, it is detected that there is vertical overflow,
+        // we will recurse back through here. Do not adjust overflow style at that time.
+        if (me.adjustmentPass) {
+            if (Ext.isIE6 || Ext.isIE7 || Ext.isIEQuirks) {
+                size.width = me.adjustedWidth;
+            }
+        } else {
+            i = target.getStyle('overflow');
+            if (i &amp;&amp; i != 'hidden') {
+                me.autoScroll = true;
+                if (!(Ext.isIE6 || Ext.isIE7 || Ext.isIEQuirks)) {
+                    target.setStyle('overflow', 'hidden');
+                    size = me.getLayoutTargetSize();
+                }
+            }
+        }
+
+        availableWidth = size.width - me.scrollOffset;
+        me.innerCt.setWidth(availableWidth);
+
+        // some columns can be percentages while others are fixed
+        // so we need to make 2 passes
+        for (i = 0; i &lt; len; i++) {
+            item = items[i];
+            itemParallelMargins = parallelMargins[i] = item.getEl().getMargin('lr');
+            if (!item.columnWidth) {
+                availableWidth -= (item.getWidth() + itemParallelMargins);
+            }
+        }
+
+        availableWidth = availableWidth &lt; 0 ? 0 : availableWidth;
+        for (i = 0; i &lt; len; i++) {
+            item = items[i];
+            if (item.columnWidth) {
+                columnWidth = Math.floor(item.columnWidth * availableWidth) - parallelMargins[i];
+                if (item.getWidth() != columnWidth) {
+                    me.setItemSize(item, columnWidth, item.height);
+                }
+            }
+        }
+
+        // After the first pass on an autoScroll layout, restore the overflow settings if it had been changed (only changed for non-IE6)
+        if (!me.adjustmentPass &amp;&amp; me.autoScroll) {
+
+            // If there's a vertical overflow, relay with scrollbars
+            target.setStyle('overflow', 'auto');
+            me.adjustmentPass = (target.dom.scrollHeight &gt; size.height);
+            if (Ext.isIE6 || Ext.isIE7 || Ext.isIEQuirks) {
+                me.adjustedWidth = size.width - Ext.getScrollBarWidth();
+            } else {
+                target.setStyle('overflow', 'auto');
+            }
+
+            // If the layout caused height overflow, recurse back and recalculate (with overflow setting restored on non-IE6)
+            if (me.adjustmentPass) {
+                me.onLayout();
+            }
+        }
+        delete me.adjustmentPass;
+    },
+
+    configureItem: function(item) {
+        if (item.columnWidth) {
+            item.layoutManagedWidth = 1;
+        } else {
+            item.layoutManagedWidth = 2;
+        }
+        item.layoutManagedHeight = 2;
+        this.callParent(arguments);
+    }
+});</pre>
+</body>
+</html>