X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/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 new file mode 100644 index 00000000..adff10f3 --- /dev/null +++ b/docs/output/Ext.layout.container.VBox.js @@ -0,0 +1,265 @@ +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": [ + + ], + "alternateClassNames": [ + "Ext.layout.VBoxLayout" + ], + "xtype": null, + "author": 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": [ + + ], + "return": { + "type": "Array", + "doc": "

of child components

\n" + }, + "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": [ + + ], + "return": { + "type": "Ext.core.Element", + "doc": "\n" + }, + "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": [ + + ], + "return": { + "type": "Ext.core.Element", + "doc": "\n" + }, + "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": [ + { + "type": "Array", + "name": "boxes", + "doc": "

The box measurements

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "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": [ + + ], + "event": [ + + ], + "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": [ + + ], + "component": false, + "superclasses": [ + "Ext.layout.Layout", + "Ext.layout.container.AbstractContainer", + "Ext.layout.container.Container", + "Ext.layout.container.Box" + ], + "subclasses": [ + "Ext.layout.container.Accordion" + ], + "mixedInto": [ + + ], + "allMixins": [ + + ] +}); \ No newline at end of file