X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/output/Ext.layout.container.VBox.js diff --git a/docs/output/Ext.layout.container.VBox.js b/docs/output/Ext.layout.container.VBox.js index adff10f3..0bfd871b 100644 --- a/docs/output/Ext.layout.container.VBox.js +++ b/docs/output/Ext.layout.container.VBox.js @@ -1,265 +1,371 @@ Ext.data.JsonP.Ext_layout_container_VBox({ - "tagname": "class", - "name": "Ext.layout.container.VBox", - "doc": "

A layout that arranges items vertically down a Container. This layout optionally divides available vertical\nspace between child items containing a numeric flex configuration.

\n\n\n

This layout may also be used to set the widths of child items by configuring it with the align option.\n

\"Ext.layout.container.VBox

\nExample usage:

\n\n
Ext.create('Ext.Panel', {\n    width: 500,\n    height: 400,\n    title: \"VBoxLayout Panel\",\n    layout: {                        \n        type: 'vbox',\n        align: 'center'\n    },\n    renderTo: document.body,\n    items: [{                        \n        xtype: 'panel',\n        title: 'Inner Panel One',\n        width: 250,\n        flex: 2                      \n    },{\n        xtype: 'panel',\n        title: 'Inner Panel Two',\n        width: 250,         \n        flex: 4\n    },{\n        xtype: 'panel',\n        title: 'Inner Panel Three',\n        width: '50%',           \n        flex: 4\n    }]\n});\n
\n", - "extends": "Ext.layout.container.Box", - "mixins": [ + "allMixins": [ ], - "alternateClassNames": [ - "Ext.layout.VBoxLayout" - ], - "xtype": null, - "author": null, + "deprecated": null, "docauthor": null, - "singleton": false, - "private": false, - "cfg": [ - { - "tagname": "cfg", - "name": "align", - "member": "Ext.layout.container.VBox", - "type": "String", - "doc": "

Controls how the child items of the container are aligned. Acceptable configuration values for this\nproperty are:

\n\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/VBox.js", - "linenr": 46, - "html_filename": "VBox.html", - "href": "VBox.html#Ext-layout-container-VBox-cfg-align", - "shortDoc": "Controls how the child items of the container are aligned. Acceptable configuration values for this\nproperty are:\n\n\nl..." - }, - { - "tagname": "cfg", - "name": "animate", - "member": "Ext.layout.container.Box", - "type": "Mixed", - "doc": "

If truthy, child Component are animated into position whenever the Container\nis layed out. If this option is numeric, it is used as the animation duration in milliseconds.

\n\n\n

May be set as a property at any time.

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 25, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-cfg-animate", - "shortDoc": "If truthy, child Component are animated into position whenever the Container\nis layed out. If this option is numeric,..." - }, - { - "tagname": "cfg", - "name": "bindToOwnerCtComponent", - "member": "Ext.layout.container.AbstractContainer", - "type": "Boolean", - "doc": "

Flag to notify the ownerCt Component on afterLayout of a change

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/layout/container/AbstractContainer.js", - "linenr": 24, - "html_filename": "AbstractContainer2.html", - "href": "AbstractContainer2.html#Ext-layout-container-AbstractContainer-cfg-bindToOwnerCtComponent" - }, - { - "tagname": "cfg", - "name": "bindToOwnerCtContainer", - "member": "Ext.layout.container.AbstractContainer", - "type": "Boolean", - "doc": "

Flag to notify the ownerCt Container on afterLayout of a change

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/layout/container/AbstractContainer.js", - "linenr": 30, - "html_filename": "AbstractContainer2.html", - "href": "AbstractContainer2.html#Ext-layout-container-AbstractContainer-cfg-bindToOwnerCtContainer" - }, - { - "tagname": "cfg", - "name": "clearInnerCtOnLayout", - "member": "Ext.layout.container.Box", - "type": "Boolean", - "doc": "\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 128, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-cfg-clearInnerCtOnLayout" - }, - { - "tagname": "cfg", - "name": "defaultMargins", - "member": "Ext.layout.container.Box", - "type": "Object", - "doc": "

If the individual contained items do not have a margins\nproperty specified or margin specified via CSS, the default margins from this property will be\napplied to each item.

\n\n\n

This property may be specified as an object containing margins\n\n\n

to apply in the format:

\n\n
{\n    top: (top margin),\n    right: (right margin),\n    bottom: (bottom margin),\n    left: (left margin)\n}
\n\n\n

This property may also be specified as a string containing\nspace-separated, numeric margin values. The order of the sides associated\nwith each value matches the way CSS processes margin values:

\n\n\n
\n\n\n

Defaults to:

\n\n\n
{top:0, right:0, bottom:0, left:0}\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 32, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-cfg-defaultMargins", - "shortDoc": "If the individual contained items do not have a margins\nproperty specified or margin specified via CSS, the default m..." - }, - { - "tagname": "cfg", - "name": "flex", - "member": "Ext.layout.container.Box", - "type": "Number", - "doc": "

This configuration option is to be applied to child items of the container managed\nby this layout. Each child item with a flex property will be flexed horizontally\naccording to each item's relative flex value compared to the sum of all items with\na flex value specified. Any child items that have either a flex = 0 or\nflex = undefined will not be 'flexed' (the initial size will not be changed).

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 102, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-cfg-flex", - "shortDoc": "This configuration option is to be applied to child items of the container managed\nby this layout. Each child item wi..." - }, - { - "tagname": "cfg", - "name": "itemCls", - "member": "Ext.layout.container.AbstractContainer", - "type": "String", - "doc": "

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\n

\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/layout/container/AbstractContainer.js", - "linenr": 36, - "html_filename": "AbstractContainer2.html", - "href": "AbstractContainer2.html#Ext-layout-container-AbstractContainer-cfg-itemCls", - "shortDoc": "An optional extra CSS class that will be added to the container. This can be useful for adding\ncustomized styles to t..." - }, - { - "tagname": "cfg", - "name": "pack", - "member": "Ext.layout.container.Box", - "type": "String", - "doc": "

Controls how the child items of the container are packed together. Acceptable configuration values\nfor this property are:

\n\n
\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 89, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-cfg-pack", - "shortDoc": "Controls how the child items of the container are packed together. Acceptable configuration values\nfor this property ..." - }, - { - "tagname": "cfg", - "name": "padding", - "member": "Ext.layout.container.Box", - "type": "String", - "doc": "

Sets the padding to be applied to all child items managed by this layout.

\n\n\n

This property must be specified as a string containing\nspace-separated, numeric padding values. The order of the sides associated\nwith each value matches the way CSS processes padding values:

\n\n\n
\n\n\n

Defaults to: \"0\"

\n\n", - "private": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 68, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-cfg-padding", - "shortDoc": "Sets the padding to be applied to all child items managed by this layout.\n\n\nThis property must be specified as a stri..." - } - ], - "method": [ - { - "tagname": "method", - "name": "getLayoutItems", - "member": "Ext.layout.container.AbstractContainer", - "doc": "

Returns an array of child components either for a render phase (Performed in the beforeLayout method of the layout's\nbase class), or the layout phase (onLayout).

\n\n", - "params": [ + "members": { + "cfg": [ + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "VBox.html#Ext-layout-container-VBox-cfg-align", + "shortDoc": "Controls how the child items of the container are aligned. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/VBox.js", + "private": false, + "name": "align", + "owner": "Ext.layout.container.VBox", + "doc": "

Controls how the child items of the container are aligned. Acceptable configuration values for this\nproperty are:

\n\n
\n\n", + "linenr": 46, + "html_filename": "VBox.html" + }, + { + "type": "Mixed", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Box.html#Ext-layout-container-Box-cfg-animate", + "shortDoc": "If truthy, child Component are animated into position whenever the Container\nis layed out. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "name": "animate", + "owner": "Ext.layout.container.Box", + "doc": "

If truthy, child Component are animated into position whenever the Container\nis layed out. If this option is numeric, it is used as the animation duration in milliseconds.

\n\n\n

May be set as a property at any time.

\n\n", + "linenr": 25, + "html_filename": "Box.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractContainer.html#Ext-layout-container-AbstractContainer-cfg-bindToOwnerCtComponent", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/layout/container/AbstractContainer.js", + "private": false, + "name": "bindToOwnerCtComponent", + "owner": "Ext.layout.container.AbstractContainer", + "doc": "

Flag to notify the ownerCt Component on afterLayout of a change

\n", + "linenr": 17, + "html_filename": "AbstractContainer.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractContainer.html#Ext-layout-container-AbstractContainer-cfg-bindToOwnerCtContainer", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/layout/container/AbstractContainer.js", + "private": false, + "name": "bindToOwnerCtContainer", + "owner": "Ext.layout.container.AbstractContainer", + "doc": "

Flag to notify the ownerCt Container on afterLayout of a change

\n", + "linenr": 23, + "html_filename": "AbstractContainer.html" + }, + { + "type": "Boolean", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Box.html#Ext-layout-container-Box-cfg-clearInnerCtOnLayout", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "name": "clearInnerCtOnLayout", + "owner": "Ext.layout.container.Box", + "doc": "\n", + "linenr": 126, + "html_filename": "Box.html" + }, + { + "type": "Object", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Box.html#Ext-layout-container-Box-cfg-defaultMargins", + "shortDoc": "If the individual contained items do not have a margins\nproperty specified or margin specified via CSS, the default m...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "name": "defaultMargins", + "owner": "Ext.layout.container.Box", + "doc": "

If the individual contained items do not have a margins\nproperty specified or margin specified via CSS, the default margins from this property will be\napplied to each item.

\n\n\n

This property may be specified as an object containing margins\n\n\n

to apply in the format:

\n\n
{\n    top: (top margin),\n    right: (right margin),\n    bottom: (bottom margin),\n    left: (left margin)\n}
\n\n\n

This property may also be specified as a string containing\nspace-separated, numeric margin values. The order of the sides associated\nwith each value matches the way CSS processes margin values:

\n\n\n
\n\n\n

Defaults to:

\n\n\n
{top:0, right:0, bottom:0, left:0}\n
\n\n", + "linenr": 32, + "html_filename": "Box.html" + }, + { + "type": "Number", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Box.html#Ext-layout-container-Box-cfg-flex", + "shortDoc": "This configuration option is to be applied to child items of the container managed\nby this layout. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "name": "flex", + "owner": "Ext.layout.container.Box", + "doc": "

This configuration option is to be applied to child items of the container managed\nby this layout. Each child item with a flex property will be flexed horizontally\naccording to each item's relative flex value compared to the sum of all items with\na flex value specified. Any child items that have either a flex = 0 or\nflex = undefined will not be 'flexed' (the initial size will not be changed).

\n", + "linenr": 102, + "html_filename": "Box.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "AbstractContainer.html#Ext-layout-container-AbstractContainer-cfg-itemCls", + "shortDoc": "An optional extra CSS class that will be added to the container. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/layout/container/AbstractContainer.js", + "private": false, + "name": "itemCls", + "owner": "Ext.layout.container.AbstractContainer", + "doc": "

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\n

\n", + "linenr": 29, + "html_filename": "AbstractContainer.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Box.html#Ext-layout-container-Box-cfg-pack", + "shortDoc": "Controls how the child items of the container are packed together. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "name": "pack", + "owner": "Ext.layout.container.Box", + "doc": "

Controls how the child items of the container are packed together. Acceptable configuration values\nfor this property are:

\n\n
\n\n", + "linenr": 89, + "html_filename": "Box.html" + }, + { + "type": "String", + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "cfg", + "href": "Box.html#Ext-layout-container-Box-cfg-padding", + "shortDoc": "Sets the padding to be applied to all child items managed by this layout. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "name": "padding", + "owner": "Ext.layout.container.Box", + "doc": "

Sets the padding to be applied to all child items managed by this layout.

\n\n\n

This property must be specified as a string containing\nspace-separated, numeric padding values. The order of the sides associated\nwith each value matches the way CSS processes padding values:

\n\n\n
\n\n\n

Defaults to: \"0\"

\n\n", + "linenr": 68, + "html_filename": "Box.html" + } + ], + "method": [ + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "AbstractContainer.html#Ext-layout-container-AbstractContainer-method-getLayoutItems", + "shortDoc": "Returns an array of child components either for a render phase (Performed in the beforeLayout method of the layout's\n...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/layout/container/AbstractContainer.js", + "private": false, + "params": [ - ], - "return": { - "type": "Array", - "doc": "

of child components

\n" + ], + "name": "getLayoutItems", + "owner": "Ext.layout.container.AbstractContainer", + "doc": "

Returns an array of child components either for a render phase (Performed in the beforeLayout method of the layout's\nbase class), or the layout phase (onLayout).

\n\n", + "linenr": 49, + "return": { + "type": "Array", + "doc": "

of child components

\n" + }, + "html_filename": "AbstractContainer.html" + }, + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "AbstractContainer.html#Ext-layout-container-AbstractContainer-method-getRenderTarget", + "shortDoc": "Returns the element into which rendering must take place. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/layout/container/AbstractContainer.js", + "private": false, + "params": [ + + ], + "name": "getRenderTarget", + "owner": "Ext.layout.container.AbstractContainer", + "doc": "

Returns the element into which rendering must take place. Defaults to the owner Container's Ext.AbstractComponent.targetEl.

\n\n\n

May be overridden in layout managers which implement an inner element.

\n", + "linenr": 68, + "return": { + "type": "Ext.core.Element", + "doc": "\n" + }, + "html_filename": "AbstractContainer.html" }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/layout/container/AbstractContainer.js", - "linenr": 87, - "html_filename": "AbstractContainer2.html", - "href": "AbstractContainer2.html#Ext-layout-container-AbstractContainer-method-getLayoutItems", - "shortDoc": "Returns an array of child components either for a render phase (Performed in the beforeLayout method of the layout's\n..." - }, - { - "tagname": "method", - "name": "getRenderTarget", - "member": "Ext.layout.container.AbstractContainer", - "doc": "

Returns the element into which rendering must take place. Defaults to the owner Container's Ext.AbstractComponent.targetEl.

\n\n\n

May be overridden in layout managers which implement an inner element.

\n", - "params": [ + { + "deprecated": null, + "alias": null, + "protected": true, + "tagname": "method", + "href": "Container.html#Ext-layout-container-Container-method-getRenderedItems", + "shortDoc": "Returns all items that are rendered ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Container.js", + "private": false, + "params": [ - ], - "return": { - "type": "Ext.core.Element", - "doc": "\n" + ], + "name": "getRenderedItems", + "owner": "Ext.layout.container.Container", + "doc": "

Returns all items that are rendered

\n", + "linenr": 53, + "return": { + "type": "Array", + "doc": "

All matching items

\n" + }, + "html_filename": "Container.html" }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/layout/container/AbstractContainer.js", - "linenr": 106, - "html_filename": "AbstractContainer2.html", - "href": "AbstractContainer2.html#Ext-layout-container-AbstractContainer-method-getRenderTarget", - "shortDoc": "Returns the element into which rendering must take place. Defaults to the owner Container's Ext.AbstractComponent.tar..." - }, - { - "tagname": "method", - "name": "getTarget", - "member": "Ext.layout.container.AbstractContainer", - "doc": "

Returns the owner component's resize element.

\n", - "params": [ + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "AbstractContainer.html#Ext-layout-container-AbstractContainer-method-getTarget", + "shortDoc": "Returns the owner component's resize element. ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/platform/src/layout/container/AbstractContainer.js", + "private": false, + "params": [ - ], - "return": { - "type": "Ext.core.Element", - "doc": "\n" + ], + "name": "getTarget", + "owner": "Ext.layout.container.AbstractContainer", + "doc": "

Returns the owner component's resize element.

\n", + "linenr": 61, + "return": { + "type": "Ext.core.Element", + "doc": "\n" + }, + "html_filename": "AbstractContainer.html" }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/platform/src/layout/container/AbstractContainer.js", - "linenr": 99, - "html_filename": "AbstractContainer2.html", - "href": "AbstractContainer2.html#Ext-layout-container-AbstractContainer-method-getTarget", - "shortDoc": "

Returns the owner component's resize element.

\n" - }, - { - "tagname": "method", - "name": "updateChildBoxes", - "member": "Ext.layout.container.Box", - "doc": "

Resizes and repositions each child component

\n", - "params": [ - { + { + "deprecated": null, + "alias": null, + "protected": true, + "tagname": "method", + "href": "Container.html#Ext-layout-container-Container-method-getVisibleItems", + "shortDoc": "Returns all items that are both rendered and visible ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Container.js", + "private": false, + "params": [ + + ], + "name": "getVisibleItems", + "owner": "Ext.layout.container.Container", + "doc": "

Returns all items that are both rendered and visible

\n", + "linenr": 76, + "return": { "type": "Array", - "name": "boxes", - "doc": "

The box measurements

\n", - "optional": false - } - ], - "return": { - "type": "void", - "doc": "\n" + "doc": "

All matching items

\n" + }, + "html_filename": "Container.html" }, - "private": false, - "static": false, - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Box.js", - "linenr": 580, - "html_filename": "Box.html", - "href": "Box.html#Ext-layout-container-Box-method-updateChildBoxes", - "shortDoc": "

Resizes and repositions each child component

\n" - } - ], - "property": [ + { + "deprecated": null, + "alias": null, + "protected": false, + "tagname": "method", + "href": "Box.html#Ext-layout-container-Box-method-updateChildBoxes", + "shortDoc": "Resizes and repositions each child component ...", + "static": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/Box.js", + "private": false, + "params": [ + { + "type": "Array", + "optional": false, + "doc": "

The box measurements

\n", + "name": "boxes" + } + ], + "name": "updateChildBoxes", + "owner": "Ext.layout.container.Box", + "doc": "

Resizes and repositions each child component

\n", + "linenr": 581, + "return": { + "type": "void", + "doc": "\n" + }, + "html_filename": "Box.html" + } + ], + "property": [ - ], - "event": [ + ], + "cssVar": [ - ], - "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/VBox.js", - "linenr": 1, - "html_filename": "VBox.html", - "href": "VBox.html#Ext-layout-container-VBox", - "cssVar": [ + ], + "cssMixin": [ - ], - "cssMixin": [ + ], + "event": [ - ], - "component": false, + ] + }, + "singleton": false, + "alias": null, "superclasses": [ "Ext.layout.Layout", "Ext.layout.container.AbstractContainer", "Ext.layout.container.Container", "Ext.layout.container.Box" ], + "protected": false, + "tagname": "class", + "mixins": [ + + ], + "href": "VBox.html#Ext-layout-container-VBox", "subclasses": [ "Ext.layout.container.Accordion" ], + "static": false, + "author": null, + "component": false, + "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/layout/container/VBox.js", + "private": false, + "alternateClassNames": [ + "Ext.layout.VBoxLayout" + ], + "name": "Ext.layout.container.VBox", + "doc": "

A layout that arranges items vertically down a Container. This layout optionally divides available vertical\nspace between child items containing a numeric flex configuration.

\n\n\n

This layout may also be used to set the widths of child items by configuring it with the align option.\n

\"Ext.layout.container.VBox

\nExample usage:

\n\n
Ext.create('Ext.Panel', {\n    width: 500,\n    height: 400,\n    title: \"VBoxLayout Panel\",\n    layout: {                        \n        type: 'vbox',\n        align: 'center'\n    },\n    renderTo: document.body,\n    items: [{                        \n        xtype: 'panel',\n        title: 'Inner Panel One',\n        width: 250,\n        flex: 2                      \n    },{\n        xtype: 'panel',\n        title: 'Inner Panel Two',\n        width: 250,         \n        flex: 4\n    },{\n        xtype: 'panel',\n        title: 'Inner Panel Three',\n        width: '50%',           \n        flex: 4\n    }]\n});\n
\n", "mixedInto": [ ], - "allMixins": [ + "linenr": 1, + "xtypes": [ - ] + ], + "html_filename": "VBox.html", + "extends": "Ext.layout.container.Box" }); \ No newline at end of file