X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/output/Ext.layout.container.Absolute.js diff --git a/docs/output/Ext.layout.container.Absolute.js b/docs/output/Ext.layout.container.Absolute.js new file mode 100644 index 00000000..12283fa1 --- /dev/null +++ b/docs/output/Ext.layout.container.Absolute.js @@ -0,0 +1,176 @@ +Ext.data.JsonP.Ext_layout_container_Absolute({ + "tagname": "class", + "name": "Ext.layout.container.Absolute", + "doc": "

This is a layout that inherits the anchoring of Ext.layout.container.Anchor and adds the\nability for x/y positioning using the standard x and y component config options.

\n\n\n

This class is intended to be extended or created via the layout\nconfiguration property. See Ext.container.Container.layout for additional details.

\n\n\n

\"Ext.layout.container.Absolute

\n\n

Example usage:

\n\n\n
Ext.create('Ext.form.Panel', {\n    title: 'Absolute Layout',\n    width: 300,\n    height: 275,\n    layout:'absolute',\n    layoutConfig: {\n        // layout-specific configs go here\n        //itemCls: 'x-abs-layout-item',\n    },\n    url:'save-form.php',\n    defaultType: 'textfield',\n    items: [{\n        x: 10,\n        y: 10,\n        xtype:'label',\n        text: 'Send To:'\n    },{\n        x: 80,\n        y: 10,\n        name: 'to',\n        anchor:'90%'  // anchor width by percentage\n    },{\n        x: 10,\n        y: 40,\n        xtype:'label',\n        text: 'Subject:'\n    },{\n        x: 80,\n        y: 40,\n        name: 'subject',\n        anchor: '90%'  // anchor width by percentage\n    },{\n        x:0,\n        y: 80,\n        xtype: 'textareafield',\n        name: 'msg',\n        anchor: '100% 100%'  // anchor width and height\n    }],\n    renderTo: Ext.getBody()\n});\n
\n\n", + "extends": "Ext.layout.container.Anchor", + "mixins": [ + + ], + "alternateClassNames": [ + "Ext.layout.AbsoluteLayout" + ], + "xtype": null, + "author": null, + "docauthor": null, + "singleton": false, + "private": false, + "cfg": [ + { + "tagname": "cfg", + "name": "anchor", + "member": "Ext.layout.container.Anchor", + "type": "String", + "doc": "

This configuation option is to be applied to child items of a container managed by\nthis layout (ie. configured with layout:'anchor').

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

This value is what tells the layout how an item should be anchored to the container. items\nadded to an AnchorLayout accept an anchoring-specific config property of anchor which is a string\ncontaining two values: the horizontal anchor value and the vertical anchor value (for example, '100% 50%').\nThe following types of anchor values are supported:

\n\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Anchor.js", + "linenr": 54, + "html_filename": "Anchor.html", + "href": "Anchor.html#Ext-layout-container-Anchor-cfg-anchor", + "shortDoc": "This configuation option is to be applied to child items of a container managed by\nthis layout (ie. configured with l..." + }, + { + "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": "defaultAnchor", + "member": "Ext.layout.container.Anchor", + "type": "String", + "doc": "

default anchor for all child container items applied if no anchor or specific width is set on the child item. Defaults to '100%'.

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Anchor.js", + "linenr": 104, + "html_filename": "Anchor.html", + "href": "Anchor.html#Ext-layout-container-Anchor-cfg-defaultAnchor", + "shortDoc": "default anchor for all child container items applied if no anchor or specific width is set on the child item. Defaul..." + }, + { + "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..." + } + ], + "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" + } + ], + "property": [ + + ], + "event": [ + + ], + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/layout/container/Absolute.js", + "linenr": 1, + "html_filename": "Absolute.html", + "href": "Absolute.html#Ext-layout-container-Absolute", + "cssVar": [ + + ], + "cssMixin": [ + + ], + "component": false, + "superclasses": [ + "Ext.layout.Layout", + "Ext.layout.container.AbstractContainer", + "Ext.layout.container.Container", + "Ext.layout.container.Anchor" + ], + "subclasses": [ + + ], + "mixedInto": [ + + ], + "allMixins": [ + + ] +}); \ No newline at end of file