Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.form.FieldContainer.js
1 Ext.data.JsonP.Ext_form_FieldContainer({
2   "tagname": "class",
3   "name": "Ext.form.FieldContainer",
4   "doc": "<p>FieldContainer is a derivation of <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a> that implements the\n<a href=\"#/api/Ext.form.Labelable\" rel=\"Ext.form.Labelable\" class=\"docClass\">Labelable</a> mixin. This allows it to be configured so that it is rendered with\na <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">field label</a> and optional <a href=\"#/api/Ext.form.FieldContainer-cfg-msgTarget\" rel=\"Ext.form.FieldContainer-cfg-msgTarget\" class=\"docClass\">error message</a> around its sub-items.\nThis is useful for arranging a group of fields or other components within a single item in a form, so\nthat it lines up nicely with other fields. A common use is for grouping a set of related fields under\na single label in a form.</p>\n\n<p>The container's configured <a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a> will be layed out within the field body area according to the\nconfigured <a href=\"#/api/Ext.form.FieldContainer-cfg-layout\" rel=\"Ext.form.FieldContainer-cfg-layout\" class=\"docClass\">layout</a> type. The default layout is <code>'autocontainer'</code>.</p>\n\n<p>Like regular fields, FieldContainer can inherit its decoration configuration from the\n<a href=\"#/api/Ext.form.Panel-cfg-fieldDefaults\" rel=\"Ext.form.Panel-cfg-fieldDefaults\" class=\"docClass\">fieldDefaults</a> of an enclosing FormPanel. In addition,\nFieldContainer itself can pass <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldDefaults\" rel=\"Ext.form.FieldContainer-cfg-fieldDefaults\" class=\"docClass\">fieldDefaults</a> to any <a href=\"#/api/Ext.form.Labelable\" rel=\"Ext.form.Labelable\" class=\"docClass\">fields</a>\nit may itself contain.</p>\n\n<p>If you are grouping a set of <a href=\"#/api/Ext.form.field.Checkbox\" rel=\"Ext.form.field.Checkbox\" class=\"docClass\">Checkbox</a> or <a href=\"#/api/Ext.form.field.Radio\" rel=\"Ext.form.field.Radio\" class=\"docClass\">Radio</a>\nfields in a single labeled container, consider using a <a href=\"#/api/Ext.form.CheckboxGroup\" rel=\"Ext.form.CheckboxGroup\" class=\"docClass\">Ext.form.CheckboxGroup</a>\nor <a href=\"#/api/Ext.form.RadioGroup\" rel=\"Ext.form.RadioGroup\" class=\"docClass\">Ext.form.RadioGroup</a> instead as they are specialized for handling those types.\n<p><img src=\"doc-resources/Ext.form.FieldContainer/Ext.form.FieldContainer1.png\" alt=\"Ext.form.FieldContainer component\"></p>\n<strong>Example usage:</strong></p>\n\n<pre><code>Ext.create('Ext.form.Panel', {\n    title: 'FieldContainer Example',\n    width: 550,\n    bodyPadding: 10,\n\n    items: [{\n        xtype: 'fieldcontainer',\n        fieldLabel: 'Last Three Jobs',\n        labelWidth: 100,\n\n        // The body area will contain three text fields, arranged\n        // horizontally, separated by draggable splitters.\n        layout: 'hbox',\n        items: [{\n            xtype: 'textfield',\n            flex: 1\n        }, {\n            xtype: 'splitter'\n        }, {\n            xtype: 'textfield',\n            flex: 1\n        }, {\n            xtype: 'splitter'\n        }, {\n            xtype: 'textfield',\n            flex: 1\n        }]\n    }],\n    renderTo: Ext.getBody()\n});\n</code></pre>\n\n<p><strong>Usage of <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldDefaults\" rel=\"Ext.form.FieldContainer-cfg-fieldDefaults\" class=\"docClass\">fieldDefaults</a>:</strong>\n<p><img src=\"doc-resources/Ext.form.FieldContainer/Ext.form.FieldContainer2.png\" alt=\"Ext.form.FieldContainer component\"></p></p>\n\n<pre><code>Ext.create('Ext.form.Panel', {\n    title: 'FieldContainer Example',\n    width: 350,\n    bodyPadding: 10,\n\n    items: [{\n        xtype: 'fieldcontainer',\n        fieldLabel: 'Your Name',\n        labelWidth: 75,\n        defaultType: 'textfield',\n\n        // Arrange fields vertically, stretched to full width\n        layout: 'anchor',\n        defaults: {\n            layout: '100%'\n        },\n\n        // These config values will be applied to both sub-fields, except\n        // for Last Name which will use its own msgTarget.\n        fieldDefaults: {\n            msgTarget: 'under',\n            labelAlign: 'top'\n        },\n\n        items: [{\n            fieldLabel: 'First Name',\n            name: 'firstName'\n        }, {\n            fieldLabel: 'Last Name',\n            name: 'lastName',\n            msgTarget: 'under'\n        }]\n    }],\n    renderTo: Ext.getBody()\n});\n</code></pre>\n",
5   "extends": "Ext.container.Container",
6   "mixins": [
7     "Ext.form.Labelable",
8     "Ext.form.FieldAncestor"
9   ],
10   "alternateClassNames": [
11
12   ],
13   "xtype": "fieldcontainer",
14   "author": null,
15   "docauthor": null,
16   "singleton": false,
17   "private": false,
18   "cfg": [
19     {
20       "tagname": "cfg",
21       "name": "activeError",
22       "member": "Ext.form.Labelable",
23       "type": "String",
24       "doc": "<p>If specified, then the component will be displayed with this value as its active error when\nfirst rendered. Defaults to undefined. Use <a href=\"#/api/Ext.form.FieldContainer-method-setActiveError\" rel=\"Ext.form.FieldContainer-method-setActiveError\" class=\"docClass\">setActiveError</a> or <a href=\"#/api/Ext.form.FieldContainer-method-unsetActiveError\" rel=\"Ext.form.FieldContainer-method-unsetActiveError\" class=\"docClass\">unsetActiveError</a> to\nchange it after component creation.</p>\n",
25       "private": false,
26       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
27       "linenr": 206,
28       "html_filename": "Labelable.html",
29       "href": "Labelable.html#Ext-form-Labelable-cfg-activeError",
30       "shortDoc": "If specified, then the component will be displayed with this value as its active error when\nfirst rendered. Defaults ..."
31     },
32     {
33       "tagname": "cfg",
34       "name": "activeErrorsTpl",
35       "member": "Ext.form.Labelable",
36       "type": "Ext.XTemplate",
37       "doc": "<p>The template used to format the Array of error messages passed to <a href=\"#/api/Ext.form.FieldContainer-method-setActiveErrors\" rel=\"Ext.form.FieldContainer-method-setActiveErrors\" class=\"docClass\">setActiveErrors</a>\ninto a single HTML string. By default this renders each message as an item in an unordered list.</p>\n",
38       "private": false,
39       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
40       "linenr": 50,
41       "html_filename": "Labelable.html",
42       "href": "Labelable.html#Ext-form-Labelable-cfg-activeErrorsTpl",
43       "shortDoc": "The template used to format the Array of error messages passed to setActiveErrors\ninto a single HTML string. By defau..."
44     },
45     {
46       "tagname": "cfg",
47       "name": "activeItem",
48       "member": "Ext.container.AbstractContainer",
49       "type": "String/Number",
50       "doc": "<p>A string component id or the numeric index of the component that should be initially activated within the\ncontainer's layout on render.  For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first\nitem in the container's collection).  activeItem only applies to layout styles that can display\nitems one at a time (like <a href=\"#/api/Ext.layout.container.Card\" rel=\"Ext.layout.container.Card\" class=\"docClass\">Ext.layout.container.Card</a> and <a href=\"#/api/Ext.layout.container.Fit\" rel=\"Ext.layout.container.Fit\" class=\"docClass\">Ext.layout.container.Fit</a>).</p>\n",
51       "private": false,
52       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
53       "linenr": 87,
54       "html_filename": "AbstractContainer.html",
55       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-activeItem",
56       "shortDoc": "A string component id or the numeric index of the component that should be initially activated within the\ncontainer's..."
57     },
58     {
59       "tagname": "cfg",
60       "name": "autoDestroy",
61       "member": "Ext.container.AbstractContainer",
62       "type": "Boolean",
63       "doc": "<p>If true the container will automatically destroy any contained component that is removed from it, else\ndestruction must be handled manually.\nDefaults to true.</p>\n",
64       "private": false,
65       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
66       "linenr": 161,
67       "html_filename": "AbstractContainer.html",
68       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-autoDestroy",
69       "shortDoc": "If true the container will automatically destroy any contained component that is removed from it, else\ndestruction mu..."
70     },
71     {
72       "tagname": "cfg",
73       "name": "autoEl",
74       "member": "Ext.AbstractComponent",
75       "type": "Mixed",
76       "doc": "<p>A tag name or <a href=\"#/api/Ext.core.DomHelper\" rel=\"Ext.core.DomHelper\" class=\"docClass\">DomHelper</a> spec used to create the <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a> which will\nencapsulate this Component.</p>\n\n\n<p>You do not normally need to specify this. For the base classes <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> and <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Ext.container.Container</a>,\nthis defaults to <b><tt>'div'</tt></b>. The more complex Sencha classes use a more complex\nDOM structure specified by their own <a href=\"#/api/Ext.form.FieldContainer-cfg-renderTpl\" rel=\"Ext.form.FieldContainer-cfg-renderTpl\" class=\"docClass\">renderTpl</a>s.</p>\n\n\n<p>This is intended to allow the developer to create application-specific utility Components encapsulated by\ndifferent DOM elements. Example usage:</p>\n\n\n<pre><code>{\n    xtype: 'component',\n    autoEl: {\n        tag: 'img',\n        src: 'http://www.example.com/example.jpg'\n    }\n}, {\n    xtype: 'component',\n    autoEl: {\n        tag: 'blockquote',\n        html: 'autoEl is cool!'\n    }\n}, {\n    xtype: 'container',\n    autoEl: 'ul',\n    cls: 'ux-unordered-list',\n    items: {\n        xtype: 'component',\n        autoEl: 'li',\n        html: 'First list item'\n    }\n}\n</code></pre>\n\n",
77       "private": false,
78       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
79       "linenr": 109,
80       "html_filename": "AbstractComponent.html",
81       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoEl",
82       "shortDoc": "A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component.\n\n\nYou do not normally ..."
83     },
84     {
85       "tagname": "cfg",
86       "name": "autoFitErrors",
87       "member": "Ext.form.Labelable",
88       "type": "Boolean",
89       "doc": "<p>Whether to adjust the component's body area to make room for 'side' or 'under'\n<a href=\"#/api/Ext.form.FieldContainer-cfg-msgTarget\" rel=\"Ext.form.FieldContainer-cfg-msgTarget\" class=\"docClass\">error messages</a>. Defaults to <tt>true</tt>.</p>\n",
90       "private": false,
91       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
92       "linenr": 184,
93       "html_filename": "Labelable.html",
94       "href": "Labelable.html#Ext-form-Labelable-cfg-autoFitErrors"
95     },
96     {
97       "tagname": "cfg",
98       "name": "autoRender",
99       "member": "Ext.AbstractComponent",
100       "type": "Mixed",
101       "doc": "<p>This config is intended mainly for <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components which may or may not be shown. Instead\nof using <a href=\"#/api/Ext.form.FieldContainer-cfg-renderTo\" rel=\"Ext.form.FieldContainer-cfg-renderTo\" class=\"docClass\">renderTo</a> in the configuration, and rendering upon construction, this allows a Component\nto render itself upon first <i><a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a></i>.</p>\n\n\n<p>Specify as <code>true</code> to have this Component render to the document body upon first show.</p>\n\n\n<p>Specify as an element, or the ID of an element to have this Component render to a specific element upon first show.</p>\n\n\n<p><b>This defaults to <code>true</code> for the <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a> class.</b></p>\n\n",
102       "private": false,
103       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
104       "linenr": 478,
105       "html_filename": "AbstractComponent.html",
106       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoRender",
107       "shortDoc": "This config is intended mainly for floating Components which may or may not be shown. Instead\nof using renderTo in th..."
108     },
109     {
110       "tagname": "cfg",
111       "name": "autoScroll",
112       "member": "Ext.Component",
113       "type": "Boolean",
114       "doc": "<p><code>true</code> to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, <code>false</code> to clip any overflowing content (defaults to <code>false</code>).</p>\n",
115       "private": false,
116       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
117       "linenr": 169,
118       "html_filename": "Component.html",
119       "href": "Component.html#Ext-Component-cfg-autoScroll",
120       "shortDoc": "true to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, false..."
121     },
122     {
123       "tagname": "cfg",
124       "name": "autoShow",
125       "member": "Ext.AbstractComponent",
126       "type": "Boolean",
127       "doc": "<p>True to automatically show the component upon creation.\nThis config option may only be used for <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> components or components\nthat use <a href=\"#/api/Ext.form.FieldContainer-cfg-autoRender\" rel=\"Ext.form.FieldContainer-cfg-autoRender\" class=\"docClass\">autoRender</a>. Defaults to <tt>false</tt>.</p>\n",
128       "private": false,
129       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
130       "linenr": 471,
131       "html_filename": "AbstractComponent.html",
132       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoShow",
133       "shortDoc": "True to automatically show the component upon creation.\nThis config option may only be used for floating components o..."
134     },
135     {
136       "tagname": "cfg",
137       "name": "baseBodyCls",
138       "member": "Ext.form.Labelable",
139       "type": "String",
140       "doc": "<p>The CSS class to be applied to the body content element. Defaults to 'x-form-item-body'.</p>\n",
141       "private": false,
142       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
143       "linenr": 87,
144       "html_filename": "Labelable.html",
145       "href": "Labelable.html#Ext-form-Labelable-cfg-baseBodyCls"
146     },
147     {
148       "tagname": "cfg",
149       "name": "baseCls",
150       "member": "Ext.AbstractComponent",
151       "type": "String",
152       "doc": "<p>The base CSS class to apply to this components's element. This will also be prepended to\nelements within this component like Panel's body will get a class x-panel-body. This means\nthat if you create a subclass of Panel, and you want it to get all the Panels styling for the\nelement and the body, you leave the baseCls x-panel and use componentCls to add specific styling for this\ncomponent.</p>\n",
153       "private": false,
154       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
155       "linenr": 252,
156       "html_filename": "AbstractComponent.html",
157       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-baseCls",
158       "shortDoc": "The base CSS class to apply to this components's element. This will also be prepended to\nelements within this compone..."
159     },
160     {
161       "tagname": "cfg",
162       "name": "border",
163       "member": "Ext.AbstractComponent",
164       "type": "Number/String",
165       "doc": "<p>Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.</p>\n",
166       "private": false,
167       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
168       "linenr": 339,
169       "html_filename": "AbstractComponent.html",
170       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-border",
171       "shortDoc": "Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be ..."
172     },
173     {
174       "tagname": "cfg",
175       "name": "bubbleEvents",
176       "member": "Ext.container.AbstractContainer",
177       "type": "Array",
178       "doc": "<p>An array of events that, when fired, should be bubbled to any parent container.\nSee <a href=\"#/api/Ext.util.Observable-method-enableBubble\" rel=\"Ext.util.Observable-method-enableBubble\" class=\"docClass\">Ext.util.Observable.enableBubble</a>.\nDefaults to <code>['add', 'remove']</code>.\n\n",
179       "private": false,
180       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
181       "linenr": 179,
182       "html_filename": "AbstractContainer.html",
183       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-bubbleEvents",
184       "shortDoc": "An array of events that, when fired, should be bubbled to any parent container.\nSee Ext.util.Observable.enableBubble...."
185     },
186     {
187       "tagname": "cfg",
188       "name": "clearCls",
189       "member": "Ext.form.Labelable",
190       "type": "String",
191       "doc": "<p>The CSS class to be applied to the special clearing div rendered directly after the field\ncontents wrapper to provide field clearing (defaults to <tt>'x-clear'</tt>).</p>\n",
192       "private": false,
193       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
194       "linenr": 100,
195       "html_filename": "Labelable.html",
196       "href": "Labelable.html#Ext-form-Labelable-cfg-clearCls",
197       "shortDoc": "The CSS class to be applied to the special clearing div rendered directly after the field\ncontents wrapper to provide..."
198     },
199     {
200       "tagname": "cfg",
201       "name": "cls",
202       "member": "Ext.AbstractComponent",
203       "type": "String",
204       "doc": "<p>An optional extra CSS class that will be added to this component's Element (defaults to '').  This can be\nuseful for adding customized styles to the component or any of its children using standard CSS rules.</p>\n",
205       "private": false,
206       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
207       "linenr": 268,
208       "html_filename": "AbstractComponent.html",
209       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-cls",
210       "shortDoc": "An optional extra CSS class that will be added to this component's Element (defaults to '').  This can be\nuseful for ..."
211     },
212     {
213       "tagname": "cfg",
214       "name": "combineErrors",
215       "member": "Ext.form.FieldContainer",
216       "type": "Boolean",
217       "doc": "<p>If set to true, the field container will automatically combine and display the validation errors from\nall the fields it contains as a single error on the container, according to the configured\n<a href=\"#/api/Ext.form.FieldContainer-cfg-msgTarget\" rel=\"Ext.form.FieldContainer-cfg-msgTarget\" class=\"docClass\">msgTarget</a>. Defaults to false.</p>\n",
218       "private": false,
219       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
220       "linenr": 129,
221       "html_filename": "FieldContainer.html",
222       "href": "FieldContainer.html#Ext-form-FieldContainer-cfg-combineErrors",
223       "shortDoc": "If set to true, the field container will automatically combine and display the validation errors from\nall the fields ..."
224     },
225     {
226       "tagname": "cfg",
227       "name": "combineLabels",
228       "member": "Ext.form.FieldContainer",
229       "type": "Boolean",
230       "doc": "<p>If set to true, and there is no defined <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a>, the field container will automatically\ngenerate its label by combining the labels of all the fields it contains. Defaults to false.</p>\n",
231       "private": false,
232       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
233       "linenr": 115,
234       "html_filename": "FieldContainer.html",
235       "href": "FieldContainer.html#Ext-form-FieldContainer-cfg-combineLabels",
236       "shortDoc": "If set to true, and there is no defined fieldLabel, the field container will automatically\ngenerate its label by comb..."
237     },
238     {
239       "tagname": "cfg",
240       "name": "componentCls",
241       "member": "Ext.AbstractComponent",
242       "type": "String",
243       "doc": "<p>CSS Class to be added to a components root level element to give distinction to it\nvia styling.</p>\n",
244       "private": false,
245       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
246       "linenr": 262,
247       "html_filename": "AbstractComponent.html",
248       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentCls"
249     },
250     {
251       "tagname": "cfg",
252       "name": "componentLayout",
253       "member": "Ext.AbstractComponent",
254       "type": "String/Object",
255       "doc": "<p>The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager which sizes a Component's internal structure in response to the Component being sized.</p>\n\n\n<p>Generally, developers will not use this configuration as all provided Components which need their internal\nelements sizing (Such as <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">input fields</a>) come with their own componentLayout managers.</p>\n\n\n<p>The <a href=\"#/api/Ext.layout.container.Auto\" rel=\"Ext.layout.container.Auto\" class=\"docClass\">default layout manager</a> will be used on instances of the base <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> class\nwhich simply sizes the Component's encapsulating element to the height and width specified in the <a href=\"#/api/Ext.form.FieldContainer-method-setSize\" rel=\"Ext.form.FieldContainer-method-setSize\" class=\"docClass\">setSize</a> method.</p>\n\n",
256       "private": false,
257       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
258       "linenr": 221,
259       "html_filename": "AbstractComponent.html",
260       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentLayout",
261       "shortDoc": "The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager..."
262     },
263     {
264       "tagname": "cfg",
265       "name": "contentEl",
266       "member": "Ext.AbstractComponent",
267       "type": "String",
268       "doc": "<p>Optional. Specify an existing HTML element, or the <code>id</code> of an existing HTML element to use as the content\nfor this component.</p>\n\n\n<ul>\n<li><b>Description</b> :\n<div class=\"sub-desc\">This config option is used to take an existing HTML element and place it in the layout element\nof a new component (it simply moves the specified DOM element <i>after the Component is rendered</i> to use as the content.</div></li>\n<li><b>Notes</b> :\n<div class=\"sub-desc\">The specified HTML element is appended to the layout element of the component <i>after any configured\n<a href=\"#/api/Ext.form.FieldContainer-cfg-html\" rel=\"Ext.form.FieldContainer-cfg-html\" class=\"docClass\">HTML</a> has been inserted</i>, and so the document will not contain this element at the time the <a href=\"#/api/Ext.form.FieldContainer-event-render\" rel=\"Ext.form.FieldContainer-event-render\" class=\"docClass\">render</a> event is fired.</div>\n<div class=\"sub-desc\">The specified HTML element used will not participate in any <code><b><a href=\"#/api/Ext.container.Container-cfg-layout\" rel=\"Ext.container.Container-cfg-layout\" class=\"docClass\">layout</a></b></code>\nscheme that the Component may use. It is just HTML. Layouts operate on child <code><b><a href=\"#/api/Ext.container.Container-property-items\" rel=\"Ext.container.Container-property-items\" class=\"docClass\">items</a></b></code>.</div>\n<div class=\"sub-desc\">Add either the <code>x-hidden</code> or the <code>x-hide-display</code> CSS class to\nprevent a brief flicker of the content before it is rendered to the panel.</div></li>\n</ul>\n\n",
269       "private": false,
270       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
271       "linenr": 401,
272       "html_filename": "AbstractComponent.html",
273       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-contentEl",
274       "shortDoc": "Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content\nfor this comp..."
275     },
276     {
277       "tagname": "cfg",
278       "name": "data",
279       "member": "Ext.AbstractComponent",
280       "type": "Mixed",
281       "doc": "<p>The initial set of data to apply to the <code><a href=\"#/api/Ext.form.FieldContainer-cfg-tpl\" rel=\"Ext.form.FieldContainer-cfg-tpl\" class=\"docClass\">tpl</a></code> to\nupdate the content area of the Component.</p>\n",
282       "private": false,
283       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
284       "linenr": 239,
285       "html_filename": "AbstractComponent.html",
286       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-data"
287     },
288     {
289       "tagname": "cfg",
290       "name": "defaultType",
291       "member": "Ext.container.AbstractContainer",
292       "type": "String",
293       "doc": "<p>The default <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">xtype</a> of child Components to create in this Container when\na child item is specified as a raw configuration object, rather than as an instantiated Component.</p>\n\n\n<p>Defaults to <code>'panel'</code>.</p>\n\n",
294       "private": false,
295       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
296       "linenr": 168,
297       "html_filename": "AbstractContainer.html",
298       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-defaultType",
299       "shortDoc": "The default xtype of child Components to create in this Container when\na child item is specified as a raw configurati..."
300     },
301     {
302       "tagname": "cfg",
303       "name": "defaults",
304       "member": "Ext.container.AbstractContainer",
305       "type": "Object|Function",
306       "doc": "<p>This option is a means of applying default settings to all added items whether added through the <a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a>\nconfig or via the <a href=\"#/api/Ext.form.FieldContainer-event-add\" rel=\"Ext.form.FieldContainer-event-add\" class=\"docClass\">add</a> or <a href=\"#/api/Ext.form.FieldContainer-method-insert\" rel=\"Ext.form.FieldContainer-method-insert\" class=\"docClass\">insert</a> methods.</p>\n\n\n<p>If an added item is a config object, and <b>not</b> an instantiated Component, then the default properties are\nunconditionally applied. If the added item <b>is</b> an instantiated Component, then the default properties are\napplied conditionally so as not to override existing properties in the item.</p>\n\n\n<p>If the defaults option is specified as a function, then the function will be called using this Container as the\nscope (<code>this</code> reference) and passing the added item as the first parameter. Any resulting object\nfrom that call is then applied to the item as default properties.</p>\n\n\n<p>For example, to automatically apply padding to the body of each of a set of\ncontained <a href=\"#/api/Ext.panel.Panel\" rel=\"Ext.panel.Panel\" class=\"docClass\">Ext.panel.Panel</a> items, you could pass: <code>defaults: {bodyStyle:'padding:15px'}</code>.</p>\n\n\n<p>Usage:</p>\n\n\n<pre><code>defaults: {               // defaults are applied to items, not the container\n    autoScroll:true\n},\nitems: [\n    {\n        xtype: 'panel',   // defaults <b>do not</b> have precedence over\n        id: 'panel1',     // options in config objects, so the defaults\n        autoScroll: false // will not be applied here, panel1 will be autoScroll:false\n    },\n    new Ext.panel.Panel({       // defaults <b>do</b> have precedence over options\n        id: 'panel2',     // options in components, so the defaults\n        autoScroll: false // will be applied here, panel2 will be autoScroll:true.\n    })\n]</code></pre>\n\n",
307       "private": false,
308       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
309       "linenr": 126,
310       "html_filename": "AbstractContainer.html",
311       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-defaults",
312       "shortDoc": "This option is a means of applying default settings to all added items whether added through the items\nconfig or via ..."
313     },
314     {
315       "tagname": "cfg",
316       "name": "disabled",
317       "member": "Ext.AbstractComponent",
318       "type": "Boolean",
319       "doc": "<p>Defaults to false.</p>\n",
320       "private": false,
321       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
322       "linenr": 363,
323       "html_filename": "AbstractComponent.html",
324       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabled"
325     },
326     {
327       "tagname": "cfg",
328       "name": "disabledCls",
329       "member": "Ext.AbstractComponent",
330       "type": "String",
331       "doc": "<p>CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.</p>\n",
332       "private": false,
333       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
334       "linenr": 281,
335       "html_filename": "AbstractComponent.html",
336       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabledCls"
337     },
338     {
339       "tagname": "cfg",
340       "name": "draggable",
341       "member": "Ext.Component",
342       "type": "Mixed",
343       "doc": "<p>Specify as true to make a <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Component draggable using the Component's encapsulating element as the drag handle.</p>\n\n\n<p>This may also be specified as a config object for the <a href=\"#/api/Ext.util.ComponentDragger\" rel=\"Ext.util.ComponentDragger\" class=\"docClass\">ComponentDragger</a> which is instantiated to perform dragging.</p>\n\n\n<p>For example to create a Component which may only be dragged around using a certain internal element as the drag handle,\nuse the delegate option:</p>\n\n\n<p><code></p>\n\n<pre>new Ext.Component({\n    constrain: true,\n    floating:true,\n    style: {\n        backgroundColor: '#fff',\n        border: '1px solid black'\n    },\n    html: '&lt;h1 style=\"cursor:move\"&gt;The title&lt;/h1&gt;&lt;p&gt;The content&lt;/p&gt;',\n    draggable: {\n        delegate: 'h1'\n    }\n}).show();\n</pre>\n\n\n<p></code></p>\n",
344       "private": false,
345       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
346       "linenr": 234,
347       "html_filename": "Component.html",
348       "href": "Component.html#Ext-Component-cfg-draggable",
349       "shortDoc": "Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle..."
350     },
351     {
352       "tagname": "cfg",
353       "name": "errorMsgCls",
354       "member": "Ext.form.Labelable",
355       "type": "String",
356       "doc": "<p>The CSS class to be applied to the error message element. Defaults to 'x-form-error-msg'.</p>\n",
357       "private": false,
358       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
359       "linenr": 81,
360       "html_filename": "Labelable.html",
361       "href": "Labelable.html#Ext-form-Labelable-cfg-errorMsgCls"
362     },
363     {
364       "tagname": "cfg",
365       "name": "fieldBodyCls",
366       "member": "Ext.form.Labelable",
367       "type": "String",
368       "doc": "<p>An extra CSS class to be applied to the body content element in addition to <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldBodyCls\" rel=\"Ext.form.FieldContainer-cfg-fieldBodyCls\" class=\"docClass\">fieldBodyCls</a>.\nDefaults to empty.</p>\n",
369       "private": false,
370       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
371       "linenr": 93,
372       "html_filename": "Labelable.html",
373       "href": "Labelable.html#Ext-form-Labelable-cfg-fieldBodyCls"
374     },
375     {
376       "tagname": "cfg",
377       "name": "fieldDefaults",
378       "member": "Ext.form.FieldAncestor",
379       "type": "Object",
380       "doc": "<p>If specified, the properties in this object are used as default config values for each\n<a href=\"#/api/Ext.form.Labelable\" rel=\"Ext.form.Labelable\" class=\"docClass\">Ext.form.Labelable</a> instance (e.g. <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">Ext.form.field.Base</a> or <a href=\"#/api/Ext.form.FieldContainer\" rel=\"Ext.form.FieldContainer\" class=\"docClass\">Ext.form.FieldContainer</a>)\nthat is added as a descendant of this container. Corresponding values specified in an individual field's\nown configuration, or from the <a href=\"#/api/Ext.container.Container-cfg-defaults\" rel=\"Ext.container.Container-cfg-defaults\" class=\"docClass\">defaults config</a> of its parent container,\nwill take precedence. See the documentation for <a href=\"#/api/Ext.form.Labelable\" rel=\"Ext.form.Labelable\" class=\"docClass\">Ext.form.Labelable</a> to see what config\noptions may be specified in the <tt>fieldDefaults</tt>.</p>\n\n\n<p>Example:</p>\n\n\n<pre><code>new Ext.form.Panel({\n    fieldDefaults: {\n        labelAlign: 'left',\n        labelWidth: 100\n    },\n    items: [{\n        xtype: 'fieldset',\n        defaults: {\n            labelAlign: 'top'\n        },\n        items: [{\n            name: 'field1'\n        }, {\n            name: 'field2'\n        }]\n    }, {\n        xtype: 'fieldset',\n        items: [{\n            name: 'field3',\n            labelWidth: 150\n        }, {\n            name: 'field4'\n        }]\n    }]\n});</code></pre>\n\n\n<p>In this example, field1 and field2 will get labelAlign:'top' (from the fieldset's <tt>defaults</tt>)\nand labelWidth:100 (from <tt>fieldDefaults</tt>), field3 and field4 will both get labelAlign:'left' (from\n<tt>fieldDefaults</tt> and field3 will use the labelWidth:150 from its own config.</p>\n\n",
381       "private": false,
382       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldAncestor.js",
383       "linenr": 22,
384       "html_filename": "FieldAncestor.html",
385       "href": "FieldAncestor.html#Ext-form-FieldAncestor-cfg-fieldDefaults",
386       "shortDoc": "If specified, the properties in this object are used as default config values for each\nExt.form.Labelable instance (e..."
387     },
388     {
389       "tagname": "cfg",
390       "name": "fieldLabel",
391       "member": "Ext.form.Labelable",
392       "type": "String",
393       "doc": "<p>The label for the field. It gets appended with the <a href=\"#/api/Ext.form.FieldContainer-cfg-labelSeparator\" rel=\"Ext.form.FieldContainer-cfg-labelSeparator\" class=\"docClass\">labelSeparator</a>, and its position\nand sizing is determined by the <a href=\"#/api/Ext.form.FieldContainer-cfg-labelAlign\" rel=\"Ext.form.FieldContainer-cfg-labelAlign\" class=\"docClass\">labelAlign</a>, <a href=\"#/api/Ext.form.FieldContainer-cfg-labelWidth\" rel=\"Ext.form.FieldContainer-cfg-labelWidth\" class=\"docClass\">labelWidth</a>, and <a href=\"#/api/Ext.form.FieldContainer-cfg-labelPad\" rel=\"Ext.form.FieldContainer-cfg-labelPad\" class=\"docClass\">labelPad</a>\nconfigs. Defaults to undefined.</p>\n",
394       "private": false,
395       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
396       "linenr": 113,
397       "html_filename": "Labelable.html",
398       "href": "Labelable.html#Ext-form-Labelable-cfg-fieldLabel",
399       "shortDoc": "The label for the field. It gets appended with the labelSeparator, and its position\nand sizing is determined by the l..."
400     },
401     {
402       "tagname": "cfg",
403       "name": "floating",
404       "member": "Ext.Component",
405       "type": "Boolean",
406       "doc": "<p>Specify as true to float the Component outside of the document flow using CSS absolute positioning.</p>\n\n\n<p>Components such as <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s and <a href=\"#/api/Ext.menu.Menu\" rel=\"Ext.menu.Menu\" class=\"docClass\">Menu</a>s are floating\nby default.</p>\n\n\n<p>Floating Components that are programatically <a href=\"#/api/Ext.Component-event-render\" rel=\"Ext.Component-event-render\" class=\"docClass\">rendered</a> will register themselves with the global\n<a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a></p>\n\n\n<h3 class=\"pa\">Floating Components as child items of a Container</h3>\n\n\n<p>A floating Component may be used as a child item of a Container. This just allows the floating Component to seek a ZIndexManager by\nexamining the ownerCt chain.</p>\n\n\n<p>When configured as floating, Components acquire, at render time, a <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a> which manages a stack\nof related floating Components. The ZIndexManager brings a single floating Component to the top of its stack when\nthe Component's <a href=\"#/api/Ext.form.FieldContainer-method-toFront\" rel=\"Ext.form.FieldContainer-method-toFront\" class=\"docClass\">toFront</a> method is called.</p>\n\n\n<p>The ZIndexManager is found by traversing up the <a href=\"#/api/Ext.form.FieldContainer-property-ownerCt\" rel=\"Ext.form.FieldContainer-property-ownerCt\" class=\"docClass\">ownerCt</a> chain to find an ancestor which itself is floating. This is so that\ndescendant floating Components of floating <i>Containers</i> (Such as a ComboBox dropdown within a Window) can have its zIndex managed relative\nto any siblings, but always <b>above</b> that floating ancestor Container.</p>\n\n\n<p>If no floating ancestor is found, a floating Component registers itself with the default <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a>.</p>\n\n\n<p>Floating components <i>do not participate in the Container's layout</i>. Because of this, they are not rendered until you explicitly\n<a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a> them.</p>\n\n\n<p>After rendering, the ownerCt reference is deleted, and the <a href=\"#/api/Ext.form.FieldContainer-property-floatParent\" rel=\"Ext.form.FieldContainer-property-floatParent\" class=\"docClass\">floatParent</a> property is set to the found floating ancestor Container.\nIf no floating ancestor Container was found the <a href=\"#/api/Ext.form.FieldContainer-property-floatParent\" rel=\"Ext.form.FieldContainer-property-floatParent\" class=\"docClass\">floatParent</a> property will not be set.</p>\n\n",
407       "private": false,
408       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
409       "linenr": 175,
410       "html_filename": "Component.html",
411       "href": "Component.html#Ext-Component-cfg-floating",
412       "shortDoc": "Specify as true to float the Component outside of the document flow using CSS absolute positioning.\n\n\nComponents such..."
413     },
414     {
415       "tagname": "cfg",
416       "name": "focusOnToFront",
417       "member": "Ext.util.Floating",
418       "type": "Boolean",
419       "doc": "<p>Specifies whether the floated component should be automatically <a href=\"#/api/Ext.form.FieldContainer-method-focus\" rel=\"Ext.form.FieldContainer-method-focus\" class=\"docClass\">focused</a> when it is\n<a href=\"#/api/Ext.form.FieldContainer-method-toFront\" rel=\"Ext.form.FieldContainer-method-toFront\" class=\"docClass\">brought to the front</a>. Defaults to true.</p>\n",
420       "private": false,
421       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
422       "linenr": 9,
423       "html_filename": "Floating.html",
424       "href": "Floating.html#Ext-util-Floating-cfg-focusOnToFront",
425       "shortDoc": "Specifies whether the floated component should be automatically focused when it is\nbrought to the front. Defaults to ..."
426     },
427     {
428       "tagname": "cfg",
429       "name": "formItemCls",
430       "member": "Ext.form.Labelable",
431       "type": "String",
432       "doc": "<p>A CSS class to be applied to the outermost element to denote that it is participating in the form\nfield layout. Defaults to 'x-form-item'.</p>\n",
433       "private": false,
434       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
435       "linenr": 68,
436       "html_filename": "Labelable.html",
437       "href": "Labelable.html#Ext-form-Labelable-cfg-formItemCls",
438       "shortDoc": "A CSS class to be applied to the outermost element to denote that it is participating in the form\nfield layout. Defau..."
439     },
440     {
441       "tagname": "cfg",
442       "name": "frame",
443       "member": "Ext.AbstractComponent",
444       "type": "Boolean",
445       "doc": "<p>Specify as <code>true</code> to have the Component inject framing elements within the Component at render time to\nprovide a graphical rounded frame around the Component content.</p>\n\n\n<p>This is only necessary when running on outdated, or non standard-compliant browsers such as Microsoft's Internet Explorer\nprior to version 9 which do not support rounded corners natively.</p>\n\n\n<p>The extra space taken up by this framing is available from the read only property <a href=\"#/api/Ext.form.FieldContainer-property-frameSize\" rel=\"Ext.form.FieldContainer-property-frameSize\" class=\"docClass\">frameSize</a>.</p>\n\n",
446       "private": false,
447       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
448       "linenr": 198,
449       "html_filename": "AbstractComponent.html",
450       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-frame",
451       "shortDoc": "Specify as true to have the Component inject framing elements within the Component at render time to\nprovide a graphi..."
452     },
453     {
454       "tagname": "cfg",
455       "name": "height",
456       "member": "Ext.AbstractComponent",
457       "type": "Number",
458       "doc": "<p>The height of this component in pixels.</p>\n",
459       "private": false,
460       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
461       "linenr": 334,
462       "html_filename": "AbstractComponent.html",
463       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-height"
464     },
465     {
466       "tagname": "cfg",
467       "name": "hidden",
468       "member": "Ext.AbstractComponent",
469       "type": "Boolean",
470       "doc": "<p>Defaults to false.</p>\n",
471       "private": false,
472       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
473       "linenr": 357,
474       "html_filename": "AbstractComponent.html",
475       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hidden"
476     },
477     {
478       "tagname": "cfg",
479       "name": "hideEmptyLabel",
480       "member": "Ext.form.Labelable",
481       "type": "Boolean",
482       "doc": "<p>When set to <tt>true</tt>, the label element (<a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a> and <a href=\"#/api/Ext.form.FieldContainer-cfg-labelSeparator\" rel=\"Ext.form.FieldContainer-cfg-labelSeparator\" class=\"docClass\">labelSeparator</a>) will be\nautomatically hidden if the <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a> is empty. Setting this to <tt>false</tt> will cause the empty\nlabel element to be rendered and space to be reserved for it; this is useful if you want a field without a label\nto line up with other labeled fields in the same form. Defaults to <tt>true</tt>.</p>\n\n\n<p>If you wish to unconditionall hide the label even if a non-empty fieldLabel is configured, then set\nthe <a href=\"#/api/Ext.form.FieldContainer-cfg-hideLabel\" rel=\"Ext.form.FieldContainer-cfg-hideLabel\" class=\"docClass\">hideLabel</a> config to <tt>true</tt>.</p>\n\n",
483       "private": false,
484       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
485       "linenr": 166,
486       "html_filename": "Labelable.html",
487       "href": "Labelable.html#Ext-form-Labelable-cfg-hideEmptyLabel",
488       "shortDoc": "When set to true, the label element (fieldLabel and labelSeparator) will be\nautomatically hidden if the fieldLabel is..."
489     },
490     {
491       "tagname": "cfg",
492       "name": "hideLabel",
493       "member": "Ext.form.Labelable",
494       "type": "Boolean",
495       "doc": "<p>Set to <tt>true</tt> to completely hide the label element (<a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a> and <a href=\"#/api/Ext.form.FieldContainer-cfg-labelSeparator\" rel=\"Ext.form.FieldContainer-cfg-labelSeparator\" class=\"docClass\">labelSeparator</a>).\nDefaults to <tt>false</tt>.</p>\n\n\n<p>Also see <a href=\"#/api/Ext.form.FieldContainer-cfg-hideEmptyLabel\" rel=\"Ext.form.FieldContainer-cfg-hideEmptyLabel\" class=\"docClass\">hideEmptyLabel</a>, which controls whether space will be reserved for an empty fieldLabel.</p>\n\n",
496       "private": false,
497       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
498       "linenr": 158,
499       "html_filename": "Labelable.html",
500       "href": "Labelable.html#Ext-form-Labelable-cfg-hideLabel",
501       "shortDoc": "Set to true to completely hide the label element (fieldLabel and labelSeparator).\nDefaults to false.\n\n\nAlso see hideE..."
502     },
503     {
504       "tagname": "cfg",
505       "name": "hideMode",
506       "member": "Ext.AbstractComponent",
507       "type": "String",
508       "doc": "<p>A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be<div class=\"mdetail-params\"><ul>\n<li><code>'display'</code> : The Component will be hidden using the <code>display: none</code> style.</li>\n<li><code>'visibility'</code> : The Component will be hidden using the <code>visibility: hidden</code> style.</li>\n<li><code>'offsets'</code> : The Component will be hidden by absolutely positioning it out of the visible area of the document. This\nis useful when a hidden Component must maintain measurable dimensions. Hiding using <code>display</code> results\nin a Component having zero dimensions.</li></ul></div>\nDefaults to <code>'display'</code>.</p>\n",
509       "private": false,
510       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
511       "linenr": 388,
512       "html_filename": "AbstractComponent.html",
513       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hideMode",
514       "shortDoc": "A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be\n'display' : The..."
515     },
516     {
517       "tagname": "cfg",
518       "name": "html",
519       "member": "Ext.AbstractComponent",
520       "type": "String/Object",
521       "doc": "<p>An HTML fragment, or a <a href=\"#/api/Ext.core.DomHelper\" rel=\"Ext.core.DomHelper\" class=\"docClass\">DomHelper</a> specification to use as the layout element\ncontent (defaults to ''). The HTML content is added after the component is rendered,\nso the document will not contain this HTML at the time the <a href=\"#/api/Ext.form.FieldContainer-event-render\" rel=\"Ext.form.FieldContainer-event-render\" class=\"docClass\">render</a> event is fired.\nThis content is inserted into the body <i>before</i> any configured <a href=\"#/api/Ext.form.FieldContainer-cfg-contentEl\" rel=\"Ext.form.FieldContainer-cfg-contentEl\" class=\"docClass\">contentEl</a> is appended.</p>\n",
522       "private": false,
523       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
524       "linenr": 419,
525       "html_filename": "AbstractComponent.html",
526       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-html",
527       "shortDoc": "An HTML fragment, or a DomHelper specification to use as the layout element\ncontent (defaults to ''). The HTML conten..."
528     },
529     {
530       "tagname": "cfg",
531       "name": "id",
532       "member": "Ext.AbstractComponent",
533       "type": "String",
534       "doc": "<p>The <b><u>unique id of this component instance</u></b> (defaults to an <a href=\"#/api/Ext.form.FieldContainer-method-getId\" rel=\"Ext.form.FieldContainer-method-getId\" class=\"docClass\">auto-assigned id</a>).</p>\n\n\n<p>It should not be necessary to use this configuration except for singleton objects in your application.\nComponents created with an id may be accessed globally using <a href=\"#/api/Ext-method-getCmp\" rel=\"Ext-method-getCmp\" class=\"docClass\">Ext.getCmp</a>.</p>\n\n\n<p>Instead of using assigned ids, use the <a href=\"#/api/Ext.form.FieldContainer-cfg-itemId\" rel=\"Ext.form.FieldContainer-cfg-itemId\" class=\"docClass\">itemId</a> config, and <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> which\nprovides selector-based searching for Sencha Components analogous to DOM querying. The <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a>\nclass contains <a href=\"#/api/Ext.container.Container-method-down\" rel=\"Ext.container.Container-method-down\" class=\"docClass\">shortcut methods</a> to query its descendant Components by selector.</p>\n\n\n<p>Note that this id will also be used as the element id for the containing HTML element\nthat is rendered to the page for this component. This allows you to write id-based CSS\nrules to style the specific instance of this component uniquely, and also to select\nsub-elements using this component's id as the parent.</p>\n\n\n<p><b>Note</b>: to avoid complications imposed by a unique <tt>id</tt> also see <code><a href=\"#/api/Ext.form.FieldContainer-cfg-itemId\" rel=\"Ext.form.FieldContainer-cfg-itemId\" class=\"docClass\">itemId</a></code>.</p>\n\n\n<p><b>Note</b>: to access the container of a Component see <code><a href=\"#/api/Ext.form.FieldContainer-property-ownerCt\" rel=\"Ext.form.FieldContainer-property-ownerCt\" class=\"docClass\">ownerCt</a></code>.</p>\n\n",
535       "private": false,
536       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
537       "linenr": 50,
538       "html_filename": "AbstractComponent.html",
539       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-id",
540       "shortDoc": "The unique id of this component instance (defaults to an auto-assigned id).\n\n\nIt should not be necessary to use this ..."
541     },
542     {
543       "tagname": "cfg",
544       "name": "invalidCls",
545       "member": "Ext.form.Labelable",
546       "type": "String",
547       "doc": "<p>The CSS class to use when marking the component invalid (defaults to 'x-form-invalid')</p>\n",
548       "private": false,
549       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
550       "linenr": 107,
551       "html_filename": "Labelable.html",
552       "href": "Labelable.html#Ext-form-Labelable-cfg-invalidCls"
553     },
554     {
555       "tagname": "cfg",
556       "name": "itemId",
557       "member": "Ext.AbstractComponent",
558       "type": "String",
559       "doc": "<p>An <tt>itemId</tt> can be used as an alternative way to get a reference to a component\nwhen no object reference is available.  Instead of using an <code><a href=\"#/api/Ext.form.FieldContainer-cfg-id\" rel=\"Ext.form.FieldContainer-cfg-id\" class=\"docClass\">id</a></code> with\n<a href=\"#/api/Ext\" rel=\"Ext\" class=\"docClass\">Ext</a>.<a href=\"#/api/Ext-method-getCmp\" rel=\"Ext-method-getCmp\" class=\"docClass\">getCmp</a>, use <code>itemId</code> with\n<a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Ext.container.Container</a>.<a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">getComponent</a> which will retrieve\n<code>itemId</code>'s or <tt><a href=\"#/api/Ext.form.FieldContainer-cfg-id\" rel=\"Ext.form.FieldContainer-cfg-id\" class=\"docClass\">id</a></tt>'s. Since <code>itemId</code>'s are an index to the\ncontainer's internal MixedCollection, the <code>itemId</code> is scoped locally to the container --\navoiding potential conflicts with <a href=\"#/api/Ext.ComponentManager\" rel=\"Ext.ComponentManager\" class=\"docClass\">Ext.ComponentManager</a> which requires a <b>unique</b>\n<code><a href=\"#/api/Ext.form.FieldContainer-cfg-id\" rel=\"Ext.form.FieldContainer-cfg-id\" class=\"docClass\">id</a></code>.</p>\n\n\n<pre><code>var c = new Ext.panel.Panel({ //\n    <a href=\"#/api/Ext.Component-cfg-height\" rel=\"Ext.Component-cfg-height\" class=\"docClass\">height</a>: 300,\n    <a href=\"#/api/Ext.form.FieldContainer-cfg-renderTo\" rel=\"Ext.form.FieldContainer-cfg-renderTo\" class=\"docClass\">renderTo</a>: document.body,\n    <a href=\"#/api/Ext.container.Container-cfg-layout\" rel=\"Ext.container.Container-cfg-layout\" class=\"docClass\">layout</a>: 'auto',\n    <a href=\"#/api/Ext.container.Container-property-items\" rel=\"Ext.container.Container-property-items\" class=\"docClass\">items</a>: [\n        {\n            itemId: 'p1',\n            <a href=\"#/api/Ext.panel.Panel--title\" rel=\"Ext.panel.Panel--title\" class=\"docClass\">title</a>: 'Panel 1',\n            <a href=\"#/api/Ext.Component-cfg-height\" rel=\"Ext.Component-cfg-height\" class=\"docClass\">height</a>: 150\n        },\n        {\n            itemId: 'p2',\n            <a href=\"#/api/Ext.panel.Panel--title\" rel=\"Ext.panel.Panel--title\" class=\"docClass\">title</a>: 'Panel 2',\n            <a href=\"#/api/Ext.Component-cfg-height\" rel=\"Ext.Component-cfg-height\" class=\"docClass\">height</a>: 150\n        }\n    ]\n})\np1 = c.<a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">getComponent</a>('p1'); // not the same as <a href=\"#/api/Ext-method-getCmp\" rel=\"Ext-method-getCmp\" class=\"docClass\">Ext.getCmp()</a>\np2 = p1.<a href=\"#/api/Ext.form.FieldContainer-property-ownerCt\" rel=\"Ext.form.FieldContainer-property-ownerCt\" class=\"docClass\">ownerCt</a>.<a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">getComponent</a>('p2'); // reference via a sibling\n</code></pre>\n\n\n<p>Also see <tt><a href=\"#/api/Ext.form.FieldContainer-cfg-id\" rel=\"Ext.form.FieldContainer-cfg-id\" class=\"docClass\">id</a></tt>, <code><a href=\"#/api/Ext.form.FieldContainer-method-query\" rel=\"Ext.form.FieldContainer-method-query\" class=\"docClass\">query</a></code>, <code><a href=\"#/api/Ext.form.FieldContainer-method-down\" rel=\"Ext.form.FieldContainer-method-down\" class=\"docClass\">down</a></code> and <code><a href=\"#/api/Ext.form.FieldContainer-method-child\" rel=\"Ext.form.FieldContainer-method-child\" class=\"docClass\">child</a></code>.</p>\n\n\n<p><b>Note</b>: to access the container of an item see <tt><a href=\"#/api/Ext.form.FieldContainer-property-ownerCt\" rel=\"Ext.form.FieldContainer-property-ownerCt\" class=\"docClass\">ownerCt</a></tt>.</p>\n\n",
560       "private": false,
561       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
562       "linenr": 66,
563       "html_filename": "AbstractComponent.html",
564       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-itemId",
565       "shortDoc": "An itemId can be used as an alternative way to get a reference to a component\nwhen no object reference is available. ..."
566     },
567     {
568       "tagname": "cfg",
569       "name": "items",
570       "member": "Ext.container.AbstractContainer",
571       "type": "Object/Array",
572       "doc": "<p>A single item, or an array of child Components to be added to this container</p>\n\n\n<p><b>Unless configured with a <a href=\"#/api/Ext.form.FieldContainer-cfg-layout\" rel=\"Ext.form.FieldContainer-cfg-layout\" class=\"docClass\">layout</a>, a Container simply renders child Components serially into\nits encapsulating element and performs no sizing or positioning upon them.</b><p>\n<p>Example:</p>\n<pre><code>// specifying a single item\nitems: {...},\nlayout: 'fit',    // The single items is sized to fit\n\n// specifying multiple items\nitems: [{...}, {...}],\nlayout: 'hbox', // The items are arranged horizontally\n       </code></pre>\n<p>Each item may be:</p>\n<ul>\n<li>A <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a></li>\n<li>A Component configuration object</li>\n</ul>\n<p>If a configuration object is specified, the actual type of Component to be\ninstantiated my be indicated by using the <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">xtype</a> option.</p>\n<p>Every Component class has its own <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">xtype</a>.</p>\n<p>If an <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">xtype</a> is not explicitly\nspecified, the <a href=\"#/api/Ext.form.FieldContainer-cfg-defaultType\" rel=\"Ext.form.FieldContainer-cfg-defaultType\" class=\"docClass\">defaultType</a> for the Container is used, which by default is usually <code>panel</code>.</p>\n<p><b>Notes</b>:</p>\n<p>Ext uses lazy rendering. Child Components will only be rendered\nshould it become necessary. Items are automatically laid out when they are first\nshown (no sizing is done while hidden), or in response to a <a href=\"#/api/Ext.form.FieldContainer-method-doLayout\" rel=\"Ext.form.FieldContainer-method-doLayout\" class=\"docClass\">doLayout</a> call.</p>\n<p>Do not specify <code><a href=\"#/api/Ext.panel.Panel-cfg-contentEl\" rel=\"Ext.panel.Panel-cfg-contentEl\" class=\"docClass\">contentEl</a></code> or \n<code><a href=\"#/api/Ext.panel.Panel-cfg-html\" rel=\"Ext.panel.Panel-cfg-html\" class=\"docClass\">html</a></code> with <code>items</code>.</p>\n\n",
573       "private": false,
574       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
575       "linenr": 94,
576       "html_filename": "AbstractContainer.html",
577       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-items",
578       "shortDoc": "A single item, or an array of child Components to be added to this container\n\n\nUnless configured with a layout, a Con..."
579     },
580     {
581       "tagname": "cfg",
582       "name": "labelAlign",
583       "member": "Ext.form.Labelable",
584       "type": "String",
585       "doc": "<p>Controls the position and alignment of the <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a>. Valid values are:</p>\n\n\n<ul>\n<li><tt>\"left\"</tt> (the default) - The label is positioned to the left of the field, with its text\naligned to the left. Its width is determined by the <a href=\"#/api/Ext.form.FieldContainer-cfg-labelWidth\" rel=\"Ext.form.FieldContainer-cfg-labelWidth\" class=\"docClass\">labelWidth</a> config.</li>\n<li><tt>\"top\"</tt> - The label is positioned above the field.</li>\n<li><tt>\"right\"</tt> - The label is positioned to the left of the field, with its text aligned\nto the right. Its width is determined by the <a href=\"#/api/Ext.form.FieldContainer-cfg-labelWidth\" rel=\"Ext.form.FieldContainer-cfg-labelWidth\" class=\"docClass\">labelWidth</a> config.</li>\n</ul>\n\n",
586       "private": false,
587       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
588       "linenr": 121,
589       "html_filename": "Labelable.html",
590       "href": "Labelable.html#Ext-form-Labelable-cfg-labelAlign",
591       "shortDoc": "Controls the position and alignment of the fieldLabel. Valid values are:\n\n\n\n\"left\" (the default) - The label is posit..."
592     },
593     {
594       "tagname": "cfg",
595       "name": "labelCls",
596       "member": "Ext.form.Labelable",
597       "type": "String",
598       "doc": "<p>The CSS class to be applied to the label element. Defaults to 'x-form-item-label'.</p>\n",
599       "private": false,
600       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
601       "linenr": 75,
602       "html_filename": "Labelable.html",
603       "href": "Labelable.html#Ext-form-Labelable-cfg-labelCls"
604     },
605     {
606       "tagname": "cfg",
607       "name": "labelConnector",
608       "member": "Ext.form.FieldContainer",
609       "type": "String",
610       "doc": "<p>The string to use when joining the labels of individual sub-fields, when <a href=\"#/api/Ext.form.FieldContainer-cfg-combineLabels\" rel=\"Ext.form.FieldContainer-cfg-combineLabels\" class=\"docClass\">combineLabels</a> is\nset to true. Defaults to ', '.</p>\n",
611       "private": false,
612       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
613       "linenr": 122,
614       "html_filename": "FieldContainer.html",
615       "href": "FieldContainer.html#Ext-form-FieldContainer-cfg-labelConnector",
616       "shortDoc": "The string to use when joining the labels of individual sub-fields, when combineLabels is\nset to true. Defaults to ',..."
617     },
618     {
619       "tagname": "cfg",
620       "name": "labelPad",
621       "member": "Ext.form.Labelable",
622       "type": "Number",
623       "doc": "<p>The amount of space in pixels between the <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a> and the input field. Defaults to <tt>5</tt>.</p>\n",
624       "private": false,
625       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
626       "linenr": 141,
627       "html_filename": "Labelable.html",
628       "href": "Labelable.html#Ext-form-Labelable-cfg-labelPad"
629     },
630     {
631       "tagname": "cfg",
632       "name": "labelSeparator",
633       "member": "Ext.form.Labelable",
634       "type": "String",
635       "doc": "<p>Character(s) to be inserted at the end of the <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">label text</a>.</p>\n",
636       "private": false,
637       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
638       "linenr": 147,
639       "html_filename": "Labelable.html",
640       "href": "Labelable.html#Ext-form-Labelable-cfg-labelSeparator"
641     },
642     {
643       "tagname": "cfg",
644       "name": "labelStyle",
645       "member": "Ext.form.Labelable",
646       "type": "String",
647       "doc": "<p>A CSS style specification string to apply directly to this field's label. Defaults to undefined.</p>\n\n",
648       "private": false,
649       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
650       "linenr": 153,
651       "html_filename": "Labelable.html",
652       "href": "Labelable.html#Ext-form-Labelable-cfg-labelStyle"
653     },
654     {
655       "tagname": "cfg",
656       "name": "labelWidth",
657       "member": "Ext.form.Labelable",
658       "type": "Number",
659       "doc": "<p>The width of the <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a> in pixels. Only applicable if the <a href=\"#/api/Ext.form.FieldContainer-cfg-labelAlign\" rel=\"Ext.form.FieldContainer-cfg-labelAlign\" class=\"docClass\">labelAlign</a> is set\nto \"left\" or \"right\". Defaults to <tt>100</tt>.</p>\n",
660       "private": false,
661       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
662       "linenr": 134,
663       "html_filename": "Labelable.html",
664       "href": "Labelable.html#Ext-form-Labelable-cfg-labelWidth"
665     },
666     {
667       "tagname": "cfg",
668       "name": "labelableRenderTpl",
669       "member": "Ext.form.Labelable",
670       "type": "Array/String/Ext.XTemplate",
671       "doc": "<p>The rendering template for the field decorations. Component classes using this mixin should include\nlogic to use this as their <a href=\"#/api/Ext.AbstractComponent-cfg-renderTpl\" rel=\"Ext.AbstractComponent-cfg-renderTpl\" class=\"docClass\">renderTpl</a>, and implement the\n<a href=\"#/api/Ext.form.FieldContainer--getSubTplMarkup\" rel=\"Ext.form.FieldContainer--getSubTplMarkup\" class=\"docClass\">getSubTplMarkup</a> method to generate the field body content.</p>\n",
672       "private": false,
673       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
674       "linenr": 29,
675       "html_filename": "Labelable.html",
676       "href": "Labelable.html#Ext-form-Labelable-cfg-labelableRenderTpl",
677       "shortDoc": "The rendering template for the field decorations. Component classes using this mixin should include\nlogic to use this..."
678     },
679     {
680       "tagname": "cfg",
681       "name": "layout",
682       "member": "Ext.container.AbstractContainer",
683       "type": "String/Object",
684       "doc": "<p><b>*Important</b>: In order for child items to be correctly sized and\npositioned, typically a layout manager <b>must</b> be specified through\nthe <code>layout</code> configuration option.</p>\n\n\n<br><p>The sizing and positioning of child <a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a> is the responsibility of\n\n\n<p>the Container's layout manager which creates and manages the type of layout\nyou have in mind.  For example:</p></p>\n\n<p>If the <a href=\"#/api/Ext.form.FieldContainer-cfg-layout\" rel=\"Ext.form.FieldContainer-cfg-layout\" class=\"docClass\">layout</a> configuration is not explicitly specified for\na general purpose container (e.g. Container or Panel) the\n<a href=\"#/api/Ext.layout.container.Auto\" rel=\"Ext.layout.container.Auto\" class=\"docClass\">default layout manager</a> will be used\nwhich does nothing but render child components sequentially into the\nContainer (no sizing or positioning will be performed in this situation).</p>\n\n\n<br><p><b><code>layout</code></b> may be specified as either as an Object or\n\n\n<p>as a String:</p><div><ul class=\"mdetail-params\"></p>\n\n<p><li><u>Specify as an Object</u></li></p>\n\n<div><ul class=\"mdetail-params\">\n<li>Example usage:</li>\n<pre><code>layout: {\n    type: 'vbox',\n    align: 'left'\n}\n       </code></pre>\n\n<li><code><b>type</b></code></li>\n<br/><p>The layout type to be used for this container.  If not specified,\na default <a href=\"#/api/Ext.layout.container.Auto\" rel=\"Ext.layout.container.Auto\" class=\"docClass\">Ext.layout.container.Auto</a> will be created and used.</p>\n<br/><p>Valid layout <code>type</code> values are:</p>\n<div class=\"sub-desc\"><ul class=\"mdetail-params\">\n<li><code><b><a href=\"#/api/Ext.layout.container.Auto\" rel=\"Ext.layout.container.Auto\" class=\"docClass\">Auto</a></b></code> &nbsp;&nbsp;&nbsp; <b>Default</b></li>\n<li><code><b><a href=\"#/api/Ext.layout.container.Card\" rel=\"Ext.layout.container.Card\" class=\"docClass\">card</a></b></code></li>\n<li><code><b><a href=\"#/api/Ext.layout.container.Fit\" rel=\"Ext.layout.container.Fit\" class=\"docClass\">fit</a></b></code></li>\n<li><code><b><a href=\"#/api/Ext.layout.container.HBox\" rel=\"Ext.layout.container.HBox\" class=\"docClass\">hbox</a></b></code></li>\n<li><code><b><a href=\"#/api/Ext.layout.container.VBox\" rel=\"Ext.layout.container.VBox\" class=\"docClass\">vbox</a></b></code></li>\n<li><code><b><a href=\"#/api/Ext.layout.container.Anchor\" rel=\"Ext.layout.container.Anchor\" class=\"docClass\">anchor</a></b></code></li>\n<li><code><b><a href=\"#/api/Ext.layout.container.Table\" rel=\"Ext.layout.container.Table\" class=\"docClass\">table</a></b></code></li>\n</ul></div>\n\n<li>Layout specific configuration properties</li>\n<br/><p>Additional layout specific configuration properties may also be\nspecified. For complete details regarding the valid config options for\neach layout type, see the layout class corresponding to the <code>type</code>\nspecified.</p>\n\n</ul></div>\n\n\n<p><li><u>Specify as a String</u></li></p>\n\n<div><ul class=\"mdetail-params\">\n<li>Example usage:</li>\n<pre><code>layout: {\n    type: 'vbox',\n    padding: '5',\n    align: 'left'\n}\n       </code></pre>\n<li><code><b>layout</b></code></li>\n<br/><p>The layout <code>type</code> to be used for this container (see list\nof valid layout type values above).</p><br/>\n<br/><p>Additional layout specific configuration properties. For complete\ndetails regarding the valid config options for each layout type, see the\nlayout class corresponding to the <code>layout</code> specified.</p>\n</ul></div>\n\n\n<p></ul></div></p>\n",
685       "private": false,
686       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
687       "linenr": 20,
688       "html_filename": "AbstractContainer.html",
689       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-layout",
690       "shortDoc": "*Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specifi..."
691     },
692     {
693       "tagname": "cfg",
694       "name": "listeners",
695       "member": "Ext.util.Observable",
696       "type": "Object",
697       "doc": "<p>(optional) <p>A config object containing one or more event handlers to be added to this\nobject during initialization.  This should be a valid listeners config object as specified in the\n<a href=\"#/api/Ext.form.FieldContainer-method-addListener\" rel=\"Ext.form.FieldContainer-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple handlers at once.</p></p>\n\n<br><p><b><u>DOM events from ExtJs <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></u></b></p>\n\n\n<br><p>While <i>some</i> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n<p>is usually only done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s\n<b><code><a href=\"#/api/Ext.view.View--click\" rel=\"Ext.view.View--click\" class=\"docClass\">click</a></code></b> event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the <code>element</code> option to\nidentify the Component property to add a DOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n\n\n<p></p></p>\n",
698       "private": false,
699       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
700       "linenr": 103,
701       "html_filename": "Observable.html",
702       "href": "Observable.html#Ext-util-Observable-cfg-listeners",
703       "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization.  T..."
704     },
705     {
706       "tagname": "cfg",
707       "name": "loader",
708       "member": "Ext.AbstractComponent",
709       "type": "Ext.ComponentLoader/Object",
710       "doc": "<p>A configuration object or an instance of a <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> to load remote\ncontent for this Component.</p>\n",
711       "private": false,
712       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
713       "linenr": 462,
714       "html_filename": "AbstractComponent.html",
715       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-loader"
716     },
717     {
718       "tagname": "cfg",
719       "name": "maintainFlex",
720       "member": "Ext.Component",
721       "type": "Boolean",
722       "doc": "<p><b>Only valid when a sibling element of a <a href=\"#/api/Ext.resizer.Splitter\" rel=\"Ext.resizer.Splitter\" class=\"docClass\">Splitter</a> within a <a href=\"#/api/Ext.layout.container.VBox\" rel=\"Ext.layout.container.VBox\" class=\"docClass\">VBox</a> or\n<a href=\"#/api/Ext.layout.container.HBox\" rel=\"Ext.layout.container.HBox\" class=\"docClass\">HBox</a> layout.</b></p>\n\n\n<p>Specifies that if an immediate sibling Splitter is moved, the Component on the <i>other</i> side is resized, and this\nComponent maintains its configured <a href=\"#/api/Ext.layout.container.Box-cfg-flex\" rel=\"Ext.layout.container.Box-cfg-flex\" class=\"docClass\">flex</a> value.</p>\n\n",
723       "private": false,
724       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
725       "linenr": 256,
726       "html_filename": "Component.html",
727       "href": "Component.html#Ext-Component-cfg-maintainFlex",
728       "shortDoc": "Only valid when a sibling element of a Splitter within a VBox or\nHBox layout.\n\n\nSpecifies that if an immediate siblin..."
729     },
730     {
731       "tagname": "cfg",
732       "name": "margin",
733       "member": "Ext.AbstractComponent",
734       "type": "Number/String",
735       "doc": "<p>Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.</p>\n",
736       "private": false,
737       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
738       "linenr": 351,
739       "html_filename": "AbstractComponent.html",
740       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-margin",
741       "shortDoc": "Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be ..."
742     },
743     {
744       "tagname": "cfg",
745       "name": "maxHeight",
746       "member": "Ext.AbstractComponent",
747       "type": "Number",
748       "doc": "<p>The maximum value in pixels which this Component will set its height to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
749       "private": false,
750       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
751       "linenr": 451,
752       "html_filename": "AbstractComponent.html",
753       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxHeight",
754       "shortDoc": "The maximum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..."
755     },
756     {
757       "tagname": "cfg",
758       "name": "maxWidth",
759       "member": "Ext.AbstractComponent",
760       "type": "Number",
761       "doc": "<p>The maximum value in pixels which this Component will set its width to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
762       "private": false,
763       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
764       "linenr": 456,
765       "html_filename": "AbstractComponent.html",
766       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxWidth",
767       "shortDoc": "The maximum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..."
768     },
769     {
770       "tagname": "cfg",
771       "name": "minHeight",
772       "member": "Ext.AbstractComponent",
773       "type": "Number",
774       "doc": "<p>The minimum value in pixels which this Component will set its height to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
775       "private": false,
776       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
777       "linenr": 441,
778       "html_filename": "AbstractComponent.html",
779       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minHeight",
780       "shortDoc": "The minimum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..."
781     },
782     {
783       "tagname": "cfg",
784       "name": "minWidth",
785       "member": "Ext.AbstractComponent",
786       "type": "Number",
787       "doc": "<p>The minimum value in pixels which this Component will set its width to.</p>\n\n\n<p><b>Warning:</b> This will override any size management applied by layout managers.</p>\n\n",
788       "private": false,
789       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
790       "linenr": 446,
791       "html_filename": "AbstractComponent.html",
792       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minWidth",
793       "shortDoc": "The minimum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..."
794     },
795     {
796       "tagname": "cfg",
797       "name": "msgTarget",
798       "member": "Ext.form.Labelable",
799       "type": "String",
800       "doc": "<p>The location where the error message text should display.\nMust be one of the following values:</p>\n\n\n<div class=\"mdetail-params\"><ul>\n<li><code>qtip</code> Display a quick tip containing the message when the user hovers over the field. This is the default.\n<div class=\"subdesc\"><b><a href=\"#/api/Ext.tip.QuickTipManager-method-init\" rel=\"Ext.tip.QuickTipManager-method-init\" class=\"docClass\">Ext.tip.QuickTipManager.init</a> must have been called for this setting to work.</b></div></li>\n<li><code>title</code> Display the message in a default browser title attribute popup.</li>\n<li><code>under</code> Add a block div beneath the field containing the error message.</li>\n<li><code>side</code> Add an error icon to the right of the field, displaying the message in a popup on hover.</li>\n<li><code>none</code> Don't display any error message. This might be useful if you are implementing custom error display.</li>\n<li><code>[element id]</code> Add the error message directly to the innerHTML of the specified element.</li>\n</ul></div>\n\n",
801       "private": false,
802       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
803       "linenr": 191,
804       "html_filename": "Labelable.html",
805       "href": "Labelable.html#Ext-form-Labelable-cfg-msgTarget",
806       "shortDoc": "The location where the error message text should display.\nMust be one of the following values:\n\n\n\nqtip Display a quic..."
807     },
808     {
809       "tagname": "cfg",
810       "name": "overCls",
811       "member": "Ext.AbstractComponent",
812       "type": "String",
813       "doc": "<p>An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and removed when the mouse moves out. (defaults to '').  This can be\nuseful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules.</p>\n",
814       "private": false,
815       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
816       "linenr": 274,
817       "html_filename": "AbstractComponent.html",
818       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-overCls",
819       "shortDoc": "An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and..."
820     },
821     {
822       "tagname": "cfg",
823       "name": "padding",
824       "member": "Ext.AbstractComponent",
825       "type": "Number/String",
826       "doc": "<p>Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can be a CSS style specification for each style, for example: '10 5 3 10'.</p>\n",
827       "private": false,
828       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
829       "linenr": 345,
830       "html_filename": "AbstractComponent.html",
831       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-padding",
832       "shortDoc": "Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can b..."
833     },
834     {
835       "tagname": "cfg",
836       "name": "plugins",
837       "member": "Ext.AbstractComponent",
838       "type": "Object/Array",
839       "doc": "<p>An object or array of objects that will provide custom functionality for this component.  The only\nrequirement for a valid plugin is that it contain an init method that accepts a reference of type <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a>.\nWhen a component is created, if any plugins are available, the component will call the init method on each\nplugin, passing a reference to itself.  Each plugin can then call methods or respond to events on the\ncomponent as needed to provide its functionality.</p>\n",
840       "private": false,
841       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
842       "linenr": 491,
843       "html_filename": "AbstractComponent.html",
844       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-plugins",
845       "shortDoc": "An object or array of objects that will provide custom functionality for this component.  The only\nrequirement for a ..."
846     },
847     {
848       "tagname": "cfg",
849       "name": "preventMark",
850       "member": "Ext.form.Labelable",
851       "type": "Boolean",
852       "doc": "<p><tt>true</tt> to disable displaying any <a href=\"#/api/Ext.form.FieldContainer-method-setActiveError\" rel=\"Ext.form.FieldContainer-method-setActiveError\" class=\"docClass\">error message</a> set on this object.\nDefaults to <tt>false</tt>.</p>\n",
853       "private": false,
854       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
855       "linenr": 177,
856       "html_filename": "Labelable.html",
857       "href": "Labelable.html#Ext-form-Labelable-cfg-preventMark"
858     },
859     {
860       "tagname": "cfg",
861       "name": "renderSelectors",
862       "member": "Ext.AbstractComponent",
863       "type": "Object",
864       "doc": "<p>An object containing properties specifying <a href=\"#/api/Ext.DomQuery\" rel=\"Ext.DomQuery\" class=\"docClass\">DomQuery</a> selectors which identify child elements\ncreated by the render process.</p>\n\n<p>After the Component's internal structure is rendered according to the <a href=\"#/api/Ext.form.FieldContainer-cfg-renderTpl\" rel=\"Ext.form.FieldContainer-cfg-renderTpl\" class=\"docClass\">renderTpl</a>, this object is iterated through,\nand the found Elements are added as properties to the Component using the <code>renderSelector</code> property name.</p>\n\n<p>For example, a Component which rendered an image, and description into its element might use the following properties\ncoded into its prototype:</p>\n\n<pre><code>renderTpl: '&amp;lt;img src=\"{imageUrl}\" class=\"x-image-component-img\"&gt;&amp;lt;div class=\"x-image-component-desc\"&gt;{description}&amp;gt;/div&amp;lt;',\n\nrenderSelectors: {\n    image: 'img.x-image-component-img',\n    descEl: 'div.x-image-component-desc'\n}\n</code></pre>\n\n<p>After rendering, the Component would have a property <code>image</code> referencing its child <code>img</code> Element,\nand a property <code>descEl</code> referencing the <code>div</code> Element which contains the description.</p>\n",
865       "private": false,
866       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
867       "linenr": 158,
868       "html_filename": "AbstractComponent.html",
869       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderSelectors",
870       "shortDoc": "An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render pro..."
871     },
872     {
873       "tagname": "cfg",
874       "name": "renderTo",
875       "member": "Ext.AbstractComponent",
876       "type": "Mixed",
877       "doc": "<p>Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into.</p>\n\n\n<div><ul>\n<li><b>Notes</b> : <ul>\n<div class=\"sub-desc\">Do <u>not</u> use this option if the Component is to be a child item of\na <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a>. It is the responsibility of the\n<a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a>'s <a href=\"#/api/Ext.container.Container-cfg-layout\" rel=\"Ext.container.Container-cfg-layout\" class=\"docClass\">layout manager</a>\nto render and manage its child items.</div>\n<div class=\"sub-desc\">When using this config, a call to render() is not required.</div>\n</ul></li>\n</ul></div>\n\n\n<p>See <code><a href=\"#/api/Ext.form.FieldContainer-event-render\" rel=\"Ext.form.FieldContainer-event-render\" class=\"docClass\">render</a></code> also.</p>\n\n",
878       "private": false,
879       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
880       "linenr": 183,
881       "html_filename": "AbstractComponent.html",
882       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTo",
883       "shortDoc": "Specify the id of the element, a DOM element or an existing Element that this component\nwill be rendered into.\n\n\n\nNot..."
884     },
885     {
886       "tagname": "cfg",
887       "name": "renderTpl",
888       "member": "Ext.AbstractComponent",
889       "type": "Mixed",
890       "doc": "<p>An <a href=\"#/api/Ext.XTemplate\" rel=\"Ext.XTemplate\" class=\"docClass\">XTemplate</a> used to create the internal structure inside this Component's\nencapsulating <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a>.</p>\n\n\n<p>You do not normally need to specify this. For the base classes <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a>\nand <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Ext.container.Container</a>, this defaults to <b><code>null</code></b> which means that they will be initially rendered\nwith no internal structure; they render their <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a> empty. The more specialized ExtJS and Touch classes\nwhich use a more complex DOM structure, provide their own template definitions.</p>\n\n\n<p>This is intended to allow the developer to create application-specific utility Components with customized\ninternal structure.</p>\n\n\n<p>Upon rendering, any created child elements may be automatically imported into object properties using the\n<a href=\"#/api/Ext.form.FieldContainer-cfg-renderSelectors\" rel=\"Ext.form.FieldContainer-cfg-renderSelectors\" class=\"docClass\">renderSelectors</a> option.</p>\n\n",
891       "private": false,
892       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
893       "linenr": 143,
894       "html_filename": "AbstractComponent.html",
895       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTpl",
896       "shortDoc": "An XTemplate used to create the internal structure inside this Component's\nencapsulating Element.\n\n\nYou do not normal..."
897     },
898     {
899       "tagname": "cfg",
900       "name": "resizable",
901       "member": "Ext.Component",
902       "type": "Mixed",
903       "doc": "<p>Specify as <code>true</code> to apply a <a href=\"#/api/Ext.resizer.Resizer\" rel=\"Ext.resizer.Resizer\" class=\"docClass\">Resizer</a> to this Component\nafter rendering.</p>\n\n\n<p>May also be specified as a config object to be passed to the constructor of <a href=\"#/api/Ext.resizer.Resizer\" rel=\"Ext.resizer.Resizer\" class=\"docClass\">Resizer</a>\nto override any defaults. By default the Component passes its minimum and maximum size, and uses\n<code><a href=\"#/api/Ext.resizer.Resizer-cfg-dynamic\" rel=\"Ext.resizer.Resizer-cfg-dynamic\" class=\"docClass\">Ext.resizer.Resizer.dynamic</a>: false</code></p>\n\n",
904       "private": false,
905       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
906       "linenr": 154,
907       "html_filename": "Component.html",
908       "href": "Component.html#Ext-Component-cfg-resizable",
909       "shortDoc": "Specify as true to apply a Resizer to this Component\nafter rendering.\n\n\nMay also be specified as a config object to b..."
910     },
911     {
912       "tagname": "cfg",
913       "name": "resizeHandles",
914       "member": "Ext.Component",
915       "type": "String",
916       "doc": "<p>A valid <a href=\"#/api/Ext.resizer.Resizer\" rel=\"Ext.resizer.Resizer\" class=\"docClass\">Ext.resizer.Resizer</a> handles config string (defaults to 'all').  Only applies when resizable = true.</p>\n",
917       "private": false,
918       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
919       "linenr": 163,
920       "html_filename": "Component.html",
921       "href": "Component.html#Ext-Component-cfg-resizeHandles"
922     },
923     {
924       "tagname": "cfg",
925       "name": "saveBuffer",
926       "member": "Ext.state.Stateful",
927       "type": "Number",
928       "doc": "<p>A buffer to be applied if many state events are fired within\na short period. Defaults to 100.</p>\n",
929       "private": false,
930       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
931       "linenr": 74,
932       "html_filename": "Stateful.html",
933       "href": "Stateful.html#Ext-state-Stateful-cfg-saveBuffer"
934     },
935     {
936       "tagname": "cfg",
937       "name": "shadow",
938       "member": "Ext.util.Floating",
939       "type": "String/Boolean",
940       "doc": "<p>Specifies whether the floating component should be given a shadow. Set to\n<tt>true</tt> to automatically create an <a href=\"#/api/Ext.Shadow\" rel=\"Ext.Shadow\" class=\"docClass\">Ext.Shadow</a>, or a string indicating the\nshadow's display <a href=\"#/api/Ext.Shadow-cfg-mode\" rel=\"Ext.Shadow-cfg-mode\" class=\"docClass\">Ext.Shadow.mode</a>. Set to <tt>false</tt> to disable the shadow.\n(Defaults to <tt>'sides'</tt>.)</p>\n",
941       "private": false,
942       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
943       "linenr": 16,
944       "html_filename": "Floating.html",
945       "href": "Floating.html#Ext-util-Floating-cfg-shadow",
946       "shortDoc": "Specifies whether the floating component should be given a shadow. Set to\ntrue to automatically create an Ext.Shadow,..."
947     },
948     {
949       "tagname": "cfg",
950       "name": "stateEvents",
951       "member": "Ext.state.Stateful",
952       "type": "Array",
953       "doc": "<p>An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). <code>stateEvents</code> may be any type\nof event supported by this object, including browser or custom events\n(e.g., <tt>['click', 'customerchange']</tt>).</p>\n\n\n<p>See <code><a href=\"#/api/Ext.form.FieldContainer-cfg-stateful\" rel=\"Ext.form.FieldContainer-cfg-stateful\" class=\"docClass\">stateful</a></code> for an explanation of saving and\nrestoring object state.</p>\n\n",
954       "private": false,
955       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
956       "linenr": 64,
957       "html_filename": "Stateful.html",
958       "href": "Stateful.html#Ext-state-Stateful-cfg-stateEvents",
959       "shortDoc": "An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). stateEvents may..."
960     },
961     {
962       "tagname": "cfg",
963       "name": "stateId",
964       "member": "Ext.state.Stateful",
965       "type": "String",
966       "doc": "<p>The unique id for this object to use for state management purposes.</p>\n\n<p>See <a href=\"#/api/Ext.form.FieldContainer-cfg-stateful\" rel=\"Ext.form.FieldContainer-cfg-stateful\" class=\"docClass\">stateful</a> for an explanation of saving and restoring state.</p>\n\n",
967       "private": false,
968       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
969       "linenr": 58,
970       "html_filename": "Stateful.html",
971       "href": "Stateful.html#Ext-state-Stateful-cfg-stateId",
972       "shortDoc": "The unique id for this object to use for state management purposes.\n\nSee stateful for an explanation of saving and re..."
973     },
974     {
975       "tagname": "cfg",
976       "name": "stateful",
977       "member": "Ext.state.Stateful",
978       "type": "Boolean",
979       "doc": "<p>A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. The object must have\na <code><a href=\"#/api/Ext.form.FieldContainer-cfg-stateId\" rel=\"Ext.form.FieldContainer-cfg-stateId\" class=\"docClass\">stateId</a></code> for state to be managed. \nAuto-generated ids are not guaranteed to be stable across page loads and \ncannot be relied upon to save and restore the same state for a object.<p>\n<p>For state saving to work, the state manager's provider must have been\nset to an implementation of <a href=\"#/api/Ext.state.Provider\" rel=\"Ext.state.Provider\" class=\"docClass\">Ext.state.Provider</a> which overrides the\n<a href=\"#/api/Ext.state.Provider-method-set\" rel=\"Ext.state.Provider-method-set\" class=\"docClass\">set</a> and <a href=\"#/api/Ext.state.Provider-method-get\" rel=\"Ext.state.Provider-method-get\" class=\"docClass\">get</a>\nmethods to save and recall name/value pairs. A built-in implementation,\n<a href=\"#/api/Ext.state.CookieProvider\" rel=\"Ext.state.CookieProvider\" class=\"docClass\">Ext.state.CookieProvider</a> is available.</p>\n<p>To set the state provider for the current page:</p>\n<pre><code>Ext.state.Manager.setProvider(new Ext.state.CookieProvider({\n    expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now\n}));\n</code></pre>\n<p>A stateful object attempts to save state when one of the events\nlisted in the <code><a href=\"#/api/Ext.form.FieldContainer-cfg-stateEvents\" rel=\"Ext.form.FieldContainer-cfg-stateEvents\" class=\"docClass\">stateEvents</a></code> configuration fires.</p>\n<p>To save state, a stateful object first serializes its state by\ncalling <b><code><a href=\"#/api/Ext.form.FieldContainer-method-getState\" rel=\"Ext.form.FieldContainer-method-getState\" class=\"docClass\">getState</a></code></b>. By default, this function does\nnothing. The developer must provide an implementation which returns an\nobject hash which represents the restorable state of the object.</p>\n<p>The value yielded by getState is passed to <a href=\"#/api/Ext.state.Manager-method-set\" rel=\"Ext.state.Manager-method-set\" class=\"docClass\">Ext.state.Manager.set</a>\nwhich uses the configured <a href=\"#/api/Ext.state.Provider\" rel=\"Ext.state.Provider\" class=\"docClass\">Ext.state.Provider</a> to save the object\nkeyed by the <code><a href=\"#/api/stateId\" rel=\"stateId\" class=\"docClass\">stateId</a></code></p>.\n<p>During construction, a stateful object attempts to <i>restore</i>\nits state by calling <a href=\"#/api/Ext.state.Manager-method-get\" rel=\"Ext.state.Manager-method-get\" class=\"docClass\">Ext.state.Manager.get</a> passing the\n<code><a href=\"#/api/Ext.form.FieldContainer-cfg-stateId\" rel=\"Ext.form.FieldContainer-cfg-stateId\" class=\"docClass\">stateId</a></code></p>\n<p>The resulting object is passed to <b><code><a href=\"#/api/Ext.form.FieldContainer-method-applyState\" rel=\"Ext.form.FieldContainer-method-applyState\" class=\"docClass\">applyState</a></code></b>.\nThe default implementation of <code><a href=\"#/api/Ext.form.FieldContainer-method-applyState\" rel=\"Ext.form.FieldContainer-method-applyState\" class=\"docClass\">applyState</a></code> simply copies\nproperties into the object, but a developer may override this to support\nmore behaviour.</p>\n<p>You can perform extra processing on state save and restore by attaching\nhandlers to the <a href=\"#/api/Ext.form.FieldContainer-event-beforestaterestore\" rel=\"Ext.form.FieldContainer-event-beforestaterestore\" class=\"docClass\">beforestaterestore</a>, <a href=\"#/api/Ext.form.FieldContainer-event-staterestore\" rel=\"Ext.form.FieldContainer-event-staterestore\" class=\"docClass\">staterestore</a>,\n<a href=\"#/api/Ext.form.FieldContainer-event-beforestatesave\" rel=\"Ext.form.FieldContainer-event-beforestatesave\" class=\"docClass\">beforestatesave</a> and <a href=\"#/api/Ext.form.FieldContainer-event-statesave\" rel=\"Ext.form.FieldContainer-event-statesave\" class=\"docClass\">statesave</a> events.</p>\n\n",
980       "private": false,
981       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
982       "linenr": 18,
983       "html_filename": "Stateful.html",
984       "href": "Stateful.html#Ext-state-Stateful-cfg-stateful",
985       "shortDoc": "A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. ..."
986     },
987     {
988       "tagname": "cfg",
989       "name": "style",
990       "member": "Ext.AbstractComponent",
991       "type": "String",
992       "doc": "<p>A custom style specification to be applied to this component's Element.  Should be a valid argument to\n<a href=\"#/api/Ext.core.Element-method-applyStyles\" rel=\"Ext.core.Element-method-applyStyles\" class=\"docClass\">Ext.core.Element.applyStyles</a>.</p>\n\n<pre><code>        new Ext.panel.Panel({\n            title: 'Some Title',\n            renderTo: Ext.getBody(),\n            width: 400, height: 300,\n            layout: 'form',\n            items: [{\n                xtype: 'textarea',\n                style: {\n                    width: '95%',\n                    marginBottom: '10px'\n                }\n            },\n            new Ext.button.Button({\n                text: 'Send',\n                minWidth: '100',\n                style: {\n                    marginBottom: '10px'\n                }\n            })\n            ]\n        });\n     </code></pre>\n\n",
993       "private": false,
994       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
995       "linenr": 300,
996       "html_filename": "AbstractComponent.html",
997       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-style",
998       "shortDoc": "A custom style specification to be applied to this component's Element.  Should be a valid argument to\nExt.core.Eleme..."
999     },
1000     {
1001       "tagname": "cfg",
1002       "name": "styleHtmlCls",
1003       "member": "Ext.AbstractComponent",
1004       "type": "String",
1005       "doc": "<p>The class that is added to the content target when you set styleHtmlContent to true.\nDefaults to 'x-html'</p>\n",
1006       "private": false,
1007       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1008       "linenr": 434,
1009       "html_filename": "AbstractComponent.html",
1010       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlCls"
1011     },
1012     {
1013       "tagname": "cfg",
1014       "name": "styleHtmlContent",
1015       "member": "Ext.AbstractComponent",
1016       "type": "Boolean",
1017       "doc": "<p>True to automatically style the html inside the content target of this component (body for panels).\nDefaults to false.</p>\n",
1018       "private": false,
1019       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1020       "linenr": 427,
1021       "html_filename": "AbstractComponent.html",
1022       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlContent"
1023     },
1024     {
1025       "tagname": "cfg",
1026       "name": "suspendLayout",
1027       "member": "Ext.container.AbstractContainer",
1028       "type": "Boolean",
1029       "doc": "<p>If true, suspend calls to doLayout.  Useful when batching multiple adds to a container and not passing them\nas multiple arguments or an array.</p>\n",
1030       "private": false,
1031       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1032       "linenr": 155,
1033       "html_filename": "AbstractContainer.html",
1034       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-suspendLayout",
1035       "shortDoc": "If true, suspend calls to doLayout.  Useful when batching multiple adds to a container and not passing them\nas multip..."
1036     },
1037     {
1038       "tagname": "cfg",
1039       "name": "toFrontOnShow",
1040       "member": "Ext.Component",
1041       "type": "Boolean",
1042       "doc": "<p>True to automatically call <a href=\"#/api/Ext.form.FieldContainer-method-toFront\" rel=\"Ext.form.FieldContainer-method-toFront\" class=\"docClass\">toFront</a> when the <a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a> method is called\non an already visible, floating component (default is <code>true</code>).</p>\n\n",
1043       "private": false,
1044       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1045       "linenr": 199,
1046       "html_filename": "Component.html",
1047       "href": "Component.html#Ext-Component-cfg-toFrontOnShow",
1048       "shortDoc": "True to automatically call toFront when the show method is called\non an already visible, floating component (default ..."
1049     },
1050     {
1051       "tagname": "cfg",
1052       "name": "tpl",
1053       "member": "Ext.AbstractComponent",
1054       "type": "Mixed",
1055       "doc": "<p>An <bold><a href=\"#/api/Ext.Template\" rel=\"Ext.Template\" class=\"docClass\">Ext.Template</a></bold>, <bold><a href=\"#/api/Ext.XTemplate\" rel=\"Ext.XTemplate\" class=\"docClass\">Ext.XTemplate</a></bold>\nor an array of strings to form an <a href=\"#/api/Ext.XTemplate\" rel=\"Ext.XTemplate\" class=\"docClass\">Ext.XTemplate</a>.\nUsed in conjunction with the <code><a href=\"#/api/Ext.form.FieldContainer-cfg-data\" rel=\"Ext.form.FieldContainer-cfg-data\" class=\"docClass\">data</a></code> and\n<code><a href=\"#/api/Ext.form.FieldContainer-cfg-tplWriteMode\" rel=\"Ext.form.FieldContainer-cfg-tplWriteMode\" class=\"docClass\">tplWriteMode</a></code> configurations.</p>\n",
1056       "private": false,
1057       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1058       "linenr": 231,
1059       "html_filename": "AbstractComponent.html",
1060       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tpl",
1061       "shortDoc": "An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate.\nUsed in conjunction with the data and..."
1062     },
1063     {
1064       "tagname": "cfg",
1065       "name": "tplWriteMode",
1066       "member": "Ext.AbstractComponent",
1067       "type": "String",
1068       "doc": "<p>The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to <code>'overwrite'</code>\n(see <code><a href=\"#/api/Ext.XTemplate-method-overwrite\" rel=\"Ext.XTemplate-method-overwrite\" class=\"docClass\">Ext.XTemplate.overwrite</a></code>).</p>\n",
1069       "private": false,
1070       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1071       "linenr": 245,
1072       "html_filename": "AbstractComponent.html",
1073       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tplWriteMode",
1074       "shortDoc": "The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'\n(see Ext.X..."
1075     },
1076     {
1077       "tagname": "cfg",
1078       "name": "ui",
1079       "member": "Ext.AbstractComponent",
1080       "type": "String/Array",
1081       "doc": "<p>A set style for a component. Can be a string or an Array of multiple strings (UIs)</p>\n",
1082       "private": false,
1083       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1084       "linenr": 287,
1085       "html_filename": "AbstractComponent.html",
1086       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-ui"
1087     },
1088     {
1089       "tagname": "cfg",
1090       "name": "width",
1091       "member": "Ext.AbstractComponent",
1092       "type": "Number",
1093       "doc": "<p>The width of this component in pixels.</p>\n",
1094       "private": false,
1095       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1096       "linenr": 329,
1097       "html_filename": "AbstractComponent.html",
1098       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-width"
1099     }
1100   ],
1101   "method": [
1102     {
1103       "tagname": "method",
1104       "name": "FieldContainer",
1105       "member": "Ext.form.FieldContainer",
1106       "doc": "<p>Creates a new <a href=\"#/api/Ext.form.FieldContainer\" rel=\"Ext.form.FieldContainer\" class=\"docClass\">Ext.form.FieldContainer</a> instance.</p>\n",
1107       "params": [
1108         {
1109           "type": "Object",
1110           "name": "config",
1111           "doc": "<p>The component configuration.</p>\n",
1112           "optional": false
1113         }
1114       ],
1115       "return": {
1116         "type": "void",
1117         "doc": "\n"
1118       },
1119       "private": false,
1120       "static": false,
1121       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
1122       "linenr": 1,
1123       "html_filename": "FieldContainer.html",
1124       "href": "FieldContainer.html#Ext-form-FieldContainer-method-constructor",
1125       "shortDoc": "<p>Creates a new <a href=\"#/api/Ext.form.FieldContainer\" rel=\"Ext.form.FieldContainer\" class=\"docClass\">Ext.form.FieldContainer</a> instance.</p>\n"
1126     },
1127     {
1128       "tagname": "method",
1129       "name": "add",
1130       "member": "Ext.container.AbstractContainer",
1131       "doc": "<p>Adds <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a>(s) to this Container.</p>\n\n<h2>Description:</h2>\n\n<ul>\n<li>Fires the <a href=\"#/api/Ext.form.FieldContainer-event-beforeadd\" rel=\"Ext.form.FieldContainer-event-beforeadd\" class=\"docClass\">beforeadd</a> event before adding.</li>\n<li>The Container's <a href=\"#/api/Ext.form.FieldContainer-cfg-defaults\" rel=\"Ext.form.FieldContainer-cfg-defaults\" class=\"docClass\">default config values</a> will be applied\naccordingly (see <code><a href=\"#/api/Ext.form.FieldContainer-cfg-defaults\" rel=\"Ext.form.FieldContainer-cfg-defaults\" class=\"docClass\">defaults</a></code> for details).</li>\n<li>Fires the <code><a href=\"#/api/Ext.form.FieldContainer-event-add\" rel=\"Ext.form.FieldContainer-event-add\" class=\"docClass\">add</a></code> event after the component has been added.</li>\n</ul>\n\n\n<h2>Notes:</h2>\n\n<p>If the Container is <strong>already rendered</strong> when <code>add</code>\nis called, it will render the newly added Component into its content area.</p>\n\n<p><strong><strong>If</strong></strong> the Container was configured with a size-managing <a href=\"#/api/Ext.form.FieldContainer-cfg-layout\" rel=\"Ext.form.FieldContainer-cfg-layout\" class=\"docClass\">layout</a> manager, the Container\nwill recalculate its internal layout at this time too.</p>\n\n<p>Note that the default layout manager simply renders child Components sequentially into the content area and thereafter performs no sizing.</p>\n\n<p>If adding multiple new child Components, pass them as an array to the <code>add</code> method, so that only one layout recalculation is performed.</p>\n\n<pre><code>tb = new <a href=\"#/api/Ext.toolbar.Toolbar\" rel=\"Ext.toolbar.Toolbar\" class=\"docClass\">Ext.toolbar.Toolbar</a>({\n    renderTo: document.body\n});  // toolbar is rendered\ntb.add([{text:'Button 1'}, {text:'Button 2'}]); // add multiple items. (<a href=\"#/api/Ext.form.FieldContainer-cfg-defaultType\" rel=\"Ext.form.FieldContainer-cfg-defaultType\" class=\"docClass\">defaultType</a> for <a href=\"#/api/Ext.toolbar.Toolbar\" rel=\"Ext.toolbar.Toolbar\" class=\"docClass\">Toolbar</a> is 'button')\n</code></pre>\n\n<h2>Warning:##</h2>\n\n<p>Components directly managed by the BorderLayout layout manager\nmay not be removed or added.  See the Notes for <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">BorderLayout</a>\nfor more details.</p>\n",
1132       "params": [
1133         {
1134           "type": "...Object/Array",
1135           "name": "Component",
1136           "doc": "<p>Either one or more Components to add or an Array of Components to add.\nSee <code><a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a></code> for additional information.</p>\n",
1137           "optional": false
1138         }
1139       ],
1140       "return": {
1141         "type": "Ext.Component/Array",
1142         "doc": "<p>The Components that were added.</p>\n"
1143       },
1144       "private": false,
1145       "static": false,
1146       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1147       "linenr": 423,
1148       "html_filename": "AbstractContainer.html",
1149       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-add",
1150       "shortDoc": "Adds Component(s) to this Container.\n\nDescription:\n\n\nFires the beforeadd event before adding.\nThe Container's default..."
1151     },
1152     {
1153       "tagname": "method",
1154       "name": "addClass",
1155       "member": "Ext.AbstractComponent",
1156       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.form.FieldContainer-method-addCls\" rel=\"Ext.form.FieldContainer-method-addCls\" class=\"docClass\">addCls</a>\nAdds a CSS class to the top level element representing this component.</p>\n",
1157       "params": [
1158         {
1159           "type": "String",
1160           "name": "cls",
1161           "doc": "<p>The CSS class name to add</p>\n",
1162           "optional": false
1163         }
1164       ],
1165       "return": {
1166         "type": "Ext.Component",
1167         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
1168       },
1169       "private": false,
1170       "static": false,
1171       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1172       "linenr": 2161,
1173       "html_filename": "AbstractComponent.html",
1174       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClass",
1175       "shortDoc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.form.FieldContainer-method-addCls\" rel=\"Ext.form.FieldContainer-method-addCls\" class=\"docClass\">addCls</a>\nAdds a CSS class to the top level element representing this component.</p>\n"
1176     },
1177     {
1178       "tagname": "method",
1179       "name": "addCls",
1180       "member": "Ext.AbstractComponent",
1181       "doc": "<p>Adds a CSS class to the top level element representing this component.</p>\n",
1182       "params": [
1183         {
1184           "type": "String",
1185           "name": "cls",
1186           "doc": "<p>The CSS class name to add</p>\n",
1187           "optional": false
1188         }
1189       ],
1190       "return": {
1191         "type": "Ext.Component",
1192         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
1193       },
1194       "private": false,
1195       "static": false,
1196       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1197       "linenr": 2139,
1198       "html_filename": "AbstractComponent.html",
1199       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addCls",
1200       "shortDoc": "<p>Adds a CSS class to the top level element representing this component.</p>\n"
1201     },
1202     {
1203       "tagname": "method",
1204       "name": "addClsWithUI",
1205       "member": "Ext.AbstractComponent",
1206       "doc": "<p>Adds a cls to the uiCls array, which will also call <a href=\"#/api/Ext.form.FieldContainer--addUIClsToElement\" rel=\"Ext.form.FieldContainer--addUIClsToElement\" class=\"docClass\">addUIClsToElement</a> and adds\nto all elements of this component.</p>\n",
1207       "params": [
1208         {
1209           "type": "String/Array",
1210           "name": "cls",
1211           "doc": "<p>A string or an array of strings to add to the uiCls</p>\n",
1212           "optional": false
1213         }
1214       ],
1215       "return": {
1216         "type": "void",
1217         "doc": "\n"
1218       },
1219       "private": false,
1220       "static": false,
1221       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1222       "linenr": 1346,
1223       "html_filename": "AbstractComponent.html",
1224       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClsWithUI",
1225       "shortDoc": "<p>Adds a cls to the uiCls array, which will also call <a href=\"#/api/Ext.form.FieldContainer--addUIClsToElement\" rel=\"Ext.form.FieldContainer--addUIClsToElement\" class=\"docClass\">addUIClsToElement</a> and adds\nto all elements of this component.</p>\n"
1226     },
1227     {
1228       "tagname": "method",
1229       "name": "addEvents",
1230       "member": "Ext.util.Observable",
1231       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
1232       "params": [
1233         {
1234           "type": "Object/String",
1235           "name": "o",
1236           "doc": "<p>Either an object with event names as properties with a value of <code>true</code>\nor the first event name string if multiple event names are being passed as separate parameters.</p>\n",
1237           "optional": false
1238         },
1239         {
1240           "type": "String",
1241           "name": "",
1242           "doc": "<p>[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n\n",
1243           "optional": false
1244         }
1245       ],
1246       "return": {
1247         "type": "void",
1248         "doc": "\n"
1249       },
1250       "private": false,
1251       "static": false,
1252       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1253       "linenr": 452,
1254       "html_filename": "Observable.html",
1255       "href": "Observable.html#Ext-util-Observable-method-addEvents",
1256       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
1257     },
1258     {
1259       "tagname": "method",
1260       "name": "addListener",
1261       "member": "Ext.util.Observable",
1262       "doc": "<p>Appends an event handler to this object.</p>\n",
1263       "params": [
1264         {
1265           "type": "String",
1266           "name": "eventName",
1267           "doc": "<p>The name of the event to listen for. May also be an object who's property names are event names. See</p>\n",
1268           "optional": false
1269         },
1270         {
1271           "type": "Function",
1272           "name": "handler",
1273           "doc": "<p>The method the event invokes.</p>\n",
1274           "optional": false
1275         },
1276         {
1277           "type": "Object",
1278           "name": "scope",
1279           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
1280           "optional": true
1281         },
1282         {
1283           "type": "Object",
1284           "name": "options",
1285           "doc": "<p>(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:<ul>\n<li><b>scope</b> : Object<div class=\"sub-desc\">The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></div></li>\n<li><b>delay</b> : Number<div class=\"sub-desc\">The number of milliseconds to delay the invocation of the handler after the event fires.</div></li>\n<li><b>single</b> : Boolean<div class=\"sub-desc\">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>\n<li><b>buffer</b> : Number<div class=\"sub-desc\">Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is <em>not</em> invoked, but the new handler is scheduled in its place.</div></li>\n<li><b>target</b> : Observable<div class=\"sub-desc\">Only call the handler if the event was fired on the target Observable, <i>not</i>\nif the event was bubbled up from a child Observable.</div></li>\n<li><b>element</b> : String<div class=\"sub-desc\"><b>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</b>\nThe name of a Component property which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which\nwill exist only after the Component is rendered. For example, to add a click listener to a Panel's body:\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></p>\n\n\n<p>When added in this way, the options available are the options applicable to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a></p>\n\n\n<p></div></li>\n</ul><br></p>\n\n<p>\n<b>Combining Options</b><br>\nUsing the options argument, it is possible to combine different types of listeners:<br>\n<br>\nA delayed, one-time listener.\n<pre><code>myPanel.on('hide', this.handleClick, this, {\nsingle: true,\ndelay: 100\n});</code></pre>\n<p>\n<b>Attaching multiple handlers in 1 call</b><br>\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>.\n<p>\n\n",
1286           "optional": true
1287         }
1288       ],
1289       "return": {
1290         "type": "void",
1291         "doc": "\n"
1292       },
1293       "private": false,
1294       "static": false,
1295       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1296       "linenr": 271,
1297       "html_filename": "Observable.html",
1298       "href": "Observable.html#Ext-util-Observable-method-addListener",
1299       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
1300     },
1301     {
1302       "tagname": "method",
1303       "name": "addManagedListener",
1304       "member": "Ext.util.Observable",
1305       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
1306       "params": [
1307         {
1308           "type": "Observable/Element",
1309           "name": "item",
1310           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
1311           "optional": false
1312         },
1313         {
1314           "type": "Object/String",
1315           "name": "ename",
1316           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1317           "optional": false
1318         },
1319         {
1320           "type": "Function",
1321           "name": "fn",
1322           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
1323           "optional": false
1324         },
1325         {
1326           "type": "Object",
1327           "name": "scope",
1328           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
1329           "optional": false
1330         },
1331         {
1332           "type": "Object",
1333           "name": "opt",
1334           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
1335           "optional": false
1336         }
1337       ],
1338       "return": {
1339         "type": "void",
1340         "doc": "\n"
1341       },
1342       "private": false,
1343       "static": false,
1344       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1345       "linenr": 155,
1346       "html_filename": "Observable.html",
1347       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
1348       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
1349     },
1350     {
1351       "tagname": "method",
1352       "name": "addStateEvents",
1353       "member": "Ext.state.Stateful",
1354       "doc": "<p>Add events that will trigger the state to be saved.</p>\n",
1355       "params": [
1356         {
1357           "type": "String/Array",
1358           "name": "events",
1359           "doc": "<p>The event name or an array of event names.</p>\n",
1360           "optional": false
1361         }
1362       ],
1363       "return": {
1364         "type": "void",
1365         "doc": "\n"
1366       },
1367       "private": false,
1368       "static": false,
1369       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1370       "linenr": 159,
1371       "html_filename": "Stateful.html",
1372       "href": "Stateful.html#Ext-state-Stateful-method-addStateEvents",
1373       "shortDoc": "<p>Add events that will trigger the state to be saved.</p>\n"
1374     },
1375     {
1376       "tagname": "method",
1377       "name": "afterComponentLayout",
1378       "member": "Ext.AbstractComponent",
1379       "doc": "\n",
1380       "params": [
1381         {
1382           "type": "Number",
1383           "name": "adjWidth",
1384           "doc": "<p>The box-adjusted width that was set</p>\n",
1385           "optional": false
1386         },
1387         {
1388           "type": "Number",
1389           "name": "adjHeight",
1390           "doc": "<p>The box-adjusted height that was set</p>\n",
1391           "optional": false
1392         },
1393         {
1394           "type": "Boolean",
1395           "name": "isSetSize",
1396           "doc": "<p>Whether or not the height/width are stored on the component permanently</p>\n",
1397           "optional": false
1398         },
1399         {
1400           "type": "Ext.Component",
1401           "name": "layoutOwner",
1402           "doc": "<p>Component which sent the layout. Only used when isSetSize is false.</p>\n",
1403           "optional": false
1404         }
1405       ],
1406       "return": {
1407         "type": "void",
1408         "doc": "\n"
1409       },
1410       "private": false,
1411       "static": false,
1412       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1413       "linenr": 2481,
1414       "html_filename": "AbstractComponent.html",
1415       "href": "AbstractComponent.html#Ext-AbstractComponent-method-afterComponentLayout",
1416       "shortDoc": "\n"
1417     },
1418     {
1419       "tagname": "method",
1420       "name": "alignTo",
1421       "member": "Ext.util.Floating",
1422       "doc": "<p>Aligns this floating Component to the specified element</p>\n",
1423       "params": [
1424         {
1425           "type": "Mixed",
1426           "name": "element",
1427           "doc": "<p>The element or <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> to align to. If passing a component, it must\nbe a omponent instance. If a string id is passed, it will be used as an element id.</p>\n",
1428           "optional": false
1429         },
1430         {
1431           "type": "String",
1432           "name": "position",
1433           "doc": "<p>(optional, defaults to \"tl-bl?\") The position to align to (see <a href=\"#/api/Ext.core.Element-method-alignTo\" rel=\"Ext.core.Element-method-alignTo\" class=\"docClass\">Ext.core.Element.alignTo</a> for more details).</p>\n",
1434           "optional": false
1435         },
1436         {
1437           "type": "Array",
1438           "name": "offsets",
1439           "doc": "<p>(optional) Offset the positioning by [x, y]</p>\n",
1440           "optional": true
1441         }
1442       ],
1443       "return": {
1444         "type": "Component",
1445         "doc": "<p>this</p>\n"
1446       },
1447       "private": false,
1448       "static": false,
1449       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1450       "linenr": 171,
1451       "html_filename": "Floating.html",
1452       "href": "Floating.html#Ext-util-Floating-method-alignTo",
1453       "shortDoc": "<p>Aligns this floating Component to the specified element</p>\n"
1454     },
1455     {
1456       "tagname": "method",
1457       "name": "animate",
1458       "member": "Ext.util.Animate",
1459       "doc": "<p>Perform custom animation on this object.<p>\n<p>This method is applicable to both the the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a> class and the <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a> class.\nIt performs animated transitions of certain properties of this object over a specified timeline.</p>\n<p>The sole parameter is an object which specifies start property values, end property values, and properties which\ndescribe the timeline. Of the properties listed below, only <b><code>to</code></b> is mandatory.</p>\n<p>Properties include<ul>\n<li><code>from</code> <div class=\"sub-desc\">An object which specifies start values for the properties being animated.\nIf not supplied, properties are animated from current settings. The actual properties which may be animated depend upon\nths object being animated. See the sections below on Element and Component animation.<div></li>\n<li><code>to</code> <div class=\"sub-desc\">An object which specifies end values for the properties being animated.</div></li>\n<li><code>duration</code><div class=\"sub-desc\">The duration <b>in milliseconds</b> for which the animation will run.</div></li>\n<li><code>easing</code> <div class=\"sub-desc\">A string value describing an easing type to modify the rate of change from the default linear to non-linear. Values may be one of:<code><ul>\n<li>ease</li>\n<li>easeIn</li>\n<li>easeOut</li>\n<li>easeInOut</li>\n<li>backIn</li>\n<li>backOut</li>\n<li>elasticIn</li>\n<li>elasticOut</li>\n<li>bounceIn</li>\n<li>bounceOut</li>\n</ul></code></div></li>\n<li><code>keyframes</code> <div class=\"sub-desc\">This is an object which describes the state of animated properties at certain points along the timeline.\nit is an object containing properties who's names are the percentage along the timeline being described and who's values specify the animation state at that point.</div></li>\n<li><code>listeners</code> <div class=\"sub-desc\">This is a standard <a href=\"#/api/Ext.util.Observable-cfg-listeners\" rel=\"Ext.util.Observable-cfg-listeners\" class=\"docClass\">listeners</a> configuration object which may be used\nto inject behaviour at either the <code>beforeanimate</code> event or the <code>afteranimate</code> event.</div></li>\n</ul></p>\n<h3>Animating an <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a></h3>\nWhen animating an Element, the following properties may be specified in <code>from</code>, <code>to</code>, and <code>keyframe</code> objects:<ul>\n<li><code>x</code> <div class=\"sub-desc\">The page X position in pixels.</div></li>\n<li><code>y</code> <div class=\"sub-desc\">The page Y position in pixels</div></li>\n<li><code>left</code> <div class=\"sub-desc\">The element's CSS <code>left</code> value. Units must be supplied.</div></li>\n<li><code>top</code> <div class=\"sub-desc\">The element's CSS <code>top</code> value. Units must be supplied.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The element's CSS <code>width</code> value. Units must be supplied.</div></li>\n<li><code>height</code> <div class=\"sub-desc\">The element's CSS <code>height</code> value. Units must be supplied.</div></li>\n<li><code>scrollLeft</code> <div class=\"sub-desc\">The element's <code>scrollLeft</code> value.</div></li>\n<li><code>scrollTop</code> <div class=\"sub-desc\">The element's <code>scrollLeft</code> value.</div></li>\n<li><code>opacity</code> <div class=\"sub-desc\">The element's <code>opacity</code> value. This must be a value between <code>0</code> and <code>1</code>.</div></li>\n</ul>\n<p><b>Be aware than animating an Element which is being used by an <a href=\"#/api/Ext\" rel=\"Ext\" class=\"docClass\">Ext</a> Component without in some way informing the Component about the changed element state\nwill result in incorrect Component behaviour. This is because the Component will be using the old state of the element. To avoid this problem, it is now possible to\ndirectly animate certain properties of Components.</b></p>\n<h3>Animating a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a></h3>\nWhen animating an Element, the following properties may be specified in <code>from</code>, <code>to</code>, and <code>keyframe</code> objects:<ul>\n<li><code>x</code> <div class=\"sub-desc\">The Component's page X position in pixels.</div></li>\n<li><code>y</code> <div class=\"sub-desc\">The Component's page Y position in pixels</div></li>\n<li><code>left</code> <div class=\"sub-desc\">The Component's <code>left</code> value in pixels.</div></li>\n<li><code>top</code> <div class=\"sub-desc\">The Component's <code>top</code> value in pixels.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The Component's <code>width</code> value in pixels.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The Component's <code>width</code> value in pixels.</div></li>\n<li><code>dynamic</code> <div class=\"sub-desc\">Specify as true to update the Component's layout (if it is a Container) at every frame\nof the animation. <i>Use sparingly as laying out on every intermediate size change is an expensive operation</i>.</div></li>\n</ul>\n<p>For example, to animate a Window to a new size, ensuring that its internal layout, and any shadow is correct:</p>\n<pre><code>myWindow = Ext.create('Ext.window.Window', {\n    title: 'Test Component animation',\n    width: 500,\n    height: 300,\n    layout: {\n        type: 'hbox',\n        align: 'stretch'\n    },\n    items: [{\n        title: 'Left: 33%',\n        margins: '5 0 5 5',\n        flex: 1\n    }, {\n        title: 'Left: 66%',\n        margins: '5 5 5 5',\n        flex: 2\n    }]\n});\nmyWindow.show();\nmyWindow.header.el.on('click', function() {\n    myWindow.animate({\n        to: {\n            width: (myWindow.getWidth() == 500) ? 700 : 500,\n            height: (myWindow.getHeight() == 300) ? 400 : 300,\n        }\n    });\n});\n</code></pre>\n<p>For performance reasons, by default, the internal layout is only updated when the Window reaches its final <code>\"to\"</code> size. If dynamic updating of the Window's child\nComponents is required, then configure the animation with <code>dynamic: true</code> and the two child items will maintain their proportions during the animation.</p>\n\n",
1460       "params": [
1461         {
1462           "type": "Object",
1463           "name": "config",
1464           "doc": "<p>An object containing properties which describe the animation's start and end states, and the timeline of the animation.</p>\n",
1465           "optional": false
1466         }
1467       ],
1468       "return": {
1469         "type": "Object",
1470         "doc": "<p>this</p>\n"
1471       },
1472       "private": false,
1473       "static": false,
1474       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1475       "linenr": 207,
1476       "html_filename": "Animate.html",
1477       "href": "Animate.html#Ext-util-Animate-method-animate",
1478       "shortDoc": "Perform custom animation on this object.\nThis method is applicable to both the the Component class and the Element cl..."
1479     },
1480     {
1481       "tagname": "method",
1482       "name": "applyState",
1483       "member": "Ext.state.Stateful",
1484       "doc": "<p>Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By default it applies the state properties onto\nthe current object.</p>\n",
1485       "params": [
1486         {
1487           "type": "Object",
1488           "name": "state",
1489           "doc": "<p>The state</p>\n",
1490           "optional": false
1491         }
1492       ],
1493       "return": {
1494         "type": "void",
1495         "doc": "\n"
1496       },
1497       "private": false,
1498       "static": false,
1499       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1500       "linenr": 225,
1501       "html_filename": "Stateful.html",
1502       "href": "Stateful.html#Ext-state-Stateful-method-applyState",
1503       "shortDoc": "Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By defa..."
1504     },
1505     {
1506       "tagname": "method",
1507       "name": "beforeComponentLayout",
1508       "member": "Ext.AbstractComponent",
1509       "doc": "<p>Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being executed.</p>\n",
1510       "params": [
1511         {
1512           "type": "Number",
1513           "name": "adjWidth",
1514           "doc": "<p>The box-adjusted width that was set</p>\n",
1515           "optional": false
1516         },
1517         {
1518           "type": "Number",
1519           "name": "adjHeight",
1520           "doc": "<p>The box-adjusted height that was set</p>\n",
1521           "optional": false
1522         },
1523         {
1524           "type": "Boolean",
1525           "name": "isSetSize",
1526           "doc": "<p>Whether or not the height/width are stored on the component permanently</p>\n",
1527           "optional": false
1528         },
1529         {
1530           "type": "Ext.Component",
1531           "name": "layoutOwner",
1532           "doc": "<p>Component which sent the layout. Only used when isSetSize is false.</p>\n",
1533           "optional": false
1534         }
1535       ],
1536       "return": {
1537         "type": "void",
1538         "doc": "\n"
1539       },
1540       "private": false,
1541       "static": false,
1542       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1543       "linenr": 2491,
1544       "html_filename": "AbstractComponent.html",
1545       "href": "AbstractComponent.html#Ext-AbstractComponent-method-beforeComponentLayout",
1546       "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being ex..."
1547     },
1548     {
1549       "tagname": "method",
1550       "name": "beforeLayout",
1551       "member": "Ext.container.AbstractContainer",
1552       "doc": "<p>Occurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being executed.</p>\n",
1553       "params": [
1554
1555       ],
1556       "return": {
1557         "type": "void",
1558         "doc": "\n"
1559       },
1560       "private": false,
1561       "static": false,
1562       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1563       "linenr": 853,
1564       "html_filename": "AbstractContainer.html",
1565       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-beforeLayout",
1566       "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being ex..."
1567     },
1568     {
1569       "tagname": "method",
1570       "name": "bubble",
1571       "member": "Ext.Component",
1572       "doc": "<p>Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of\nfunction call will be the scope provided or the current component. The arguments to the function\nwill be the args provided or the current component. If the function returns false at any point,\nthe bubble is stopped.</p>\n",
1573       "params": [
1574         {
1575           "type": "Function",
1576           "name": "fn",
1577           "doc": "<p>The function to call</p>\n",
1578           "optional": false
1579         },
1580         {
1581           "type": "Object",
1582           "name": "scope",
1583           "doc": "<p>(optional) The scope of the function (defaults to current node)</p>\n",
1584           "optional": true
1585         },
1586         {
1587           "type": "Array",
1588           "name": "args",
1589           "doc": "<p>(optional) The args to call the function with (default to passing the current component)</p>\n",
1590           "optional": true
1591         }
1592       ],
1593       "return": {
1594         "type": "Ext.Component",
1595         "doc": "<p>this</p>\n"
1596       },
1597       "private": false,
1598       "static": false,
1599       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1600       "linenr": 1004,
1601       "html_filename": "Component.html",
1602       "href": "Component.html#Ext-Component-method-bubble",
1603       "shortDoc": "Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of..."
1604     },
1605     {
1606       "tagname": "method",
1607       "name": "capture",
1608       "member": "Ext.util.Observable",
1609       "doc": "<p>Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
1610       "params": [
1611         {
1612           "type": "Observable",
1613           "name": "o",
1614           "doc": "<p>The Observable to capture events from.</p>\n",
1615           "optional": false
1616         },
1617         {
1618           "type": "Function",
1619           "name": "fn",
1620           "doc": "<p>The function to call when an event is fired.</p>\n",
1621           "optional": false
1622         },
1623         {
1624           "type": "Object",
1625           "name": "scope",
1626           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
1627           "optional": true
1628         }
1629       ],
1630       "return": {
1631         "type": "void",
1632         "doc": "\n"
1633       },
1634       "private": false,
1635       "static": true,
1636       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1637       "linenr": 55,
1638       "html_filename": "Observable.html",
1639       "href": "Observable.html#Ext-util-Observable-method-capture",
1640       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
1641     },
1642     {
1643       "tagname": "method",
1644       "name": "cascade",
1645       "member": "Ext.container.AbstractContainer",
1646       "doc": "<p>Cascades down the component/container heirarchy from this component (passed in the first call), calling the specified function with\neach component. The scope (<code>this</code> reference) of the\nfunction call will be the scope provided or the current component. The arguments to the function\nwill be the args provided or the current component. If the function returns false at any point,\nthe cascade is stopped on that branch.</p>\n",
1647       "params": [
1648         {
1649           "type": "Function",
1650           "name": "fn",
1651           "doc": "<p>The function to call</p>\n",
1652           "optional": false
1653         },
1654         {
1655           "type": "Object",
1656           "name": "scope",
1657           "doc": "<p>(optional) The scope of the function (defaults to current component)</p>\n",
1658           "optional": true
1659         },
1660         {
1661           "type": "Array",
1662           "name": "args",
1663           "doc": "<p>(optional) The args to call the function with. The current component always passed as the last argument.</p>\n",
1664           "optional": true
1665         }
1666       ],
1667       "return": {
1668         "type": "Ext.Container",
1669         "doc": "<p>this</p>\n"
1670       },
1671       "private": false,
1672       "static": false,
1673       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1674       "linenr": 717,
1675       "html_filename": "AbstractContainer.html",
1676       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-cascade",
1677       "shortDoc": "Cascades down the component/container heirarchy from this component (passed in the first call), calling the specified..."
1678     },
1679     {
1680       "tagname": "method",
1681       "name": "center",
1682       "member": "Ext.util.Floating",
1683       "doc": "<p>Center this Component in its container.</p>\n",
1684       "params": [
1685
1686       ],
1687       "return": {
1688         "type": "Component",
1689         "doc": "<p>this</p>\n"
1690       },
1691       "private": false,
1692       "static": false,
1693       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1694       "linenr": 249,
1695       "html_filename": "Floating.html",
1696       "href": "Floating.html#Ext-util-Floating-method-center",
1697       "shortDoc": "<p>Center this Component in its container.</p>\n"
1698     },
1699     {
1700       "tagname": "method",
1701       "name": "child",
1702       "member": "Ext.container.AbstractContainer",
1703       "doc": "<p>Retrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must comply with an <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector.</p>\n",
1704       "params": [
1705         {
1706           "type": "String",
1707           "name": "selector",
1708           "doc": "<p>An <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector</p>\n",
1709           "optional": false
1710         }
1711       ],
1712       "return": {
1713         "type": "void",
1714         "doc": "<p>Ext.Component</p>\n"
1715       },
1716       "private": false,
1717       "static": false,
1718       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1719       "linenr": 782,
1720       "html_filename": "AbstractContainer.html",
1721       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-child",
1722       "shortDoc": "Retrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must com..."
1723     },
1724     {
1725       "tagname": "method",
1726       "name": "clearListeners",
1727       "member": "Ext.util.Observable",
1728       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
1729       "params": [
1730
1731       ],
1732       "return": {
1733         "type": "void",
1734         "doc": "\n"
1735       },
1736       "private": false,
1737       "static": false,
1738       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1739       "linenr": 383,
1740       "html_filename": "Observable.html",
1741       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
1742       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
1743     },
1744     {
1745       "tagname": "method",
1746       "name": "clearManagedListeners",
1747       "member": "Ext.util.Observable",
1748       "doc": "<p>Removes all managed listeners for this object.</p>\n",
1749       "params": [
1750
1751       ],
1752       "return": {
1753         "type": "void",
1754         "doc": "\n"
1755       },
1756       "private": false,
1757       "static": false,
1758       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1759       "linenr": 412,
1760       "html_filename": "Observable.html",
1761       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
1762       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
1763     },
1764     {
1765       "tagname": "method",
1766       "name": "cloneConfig",
1767       "member": "Ext.Component",
1768       "doc": "<p>Clone the current component using the original config values passed into this instance by default.</p>\n",
1769       "params": [
1770         {
1771           "type": "Object",
1772           "name": "overrides",
1773           "doc": "<p>A new config containing any properties to override in the cloned version.\nAn id property can be passed on this object, otherwise one will be generated to avoid duplicates.</p>\n",
1774           "optional": false
1775         }
1776       ],
1777       "return": {
1778         "type": "Ext.Component",
1779         "doc": "<p>clone The cloned copy of this component</p>\n"
1780       },
1781       "private": false,
1782       "static": false,
1783       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1784       "linenr": 944,
1785       "html_filename": "Component.html",
1786       "href": "Component.html#Ext-Component-method-cloneConfig",
1787       "shortDoc": "<p>Clone the current component using the original config values passed into this instance by default.</p>\n"
1788     },
1789     {
1790       "tagname": "method",
1791       "name": "destroy",
1792       "member": "Ext.AbstractComponent",
1793       "doc": "<p>Destroys the Component.</p>\n",
1794       "params": [
1795
1796       ],
1797       "return": {
1798         "type": "void",
1799         "doc": "\n"
1800       },
1801       "private": false,
1802       "static": false,
1803       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1804       "linenr": 2672,
1805       "html_filename": "AbstractComponent.html",
1806       "href": "AbstractComponent.html#Ext-AbstractComponent-method-destroy",
1807       "shortDoc": "<p>Destroys the Component.</p>\n"
1808     },
1809     {
1810       "tagname": "method",
1811       "name": "disable",
1812       "member": "Ext.AbstractComponent",
1813       "doc": "<p>Disable the component.</p>\n",
1814       "params": [
1815         {
1816           "type": "Boolean",
1817           "name": "silent",
1818           "doc": "<p>Passing true, will supress the 'disable' event from being fired.</p>\n",
1819           "optional": false
1820         }
1821       ],
1822       "return": {
1823         "type": "void",
1824         "doc": "\n"
1825       },
1826       "private": false,
1827       "static": false,
1828       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1829       "linenr": 2078,
1830       "html_filename": "AbstractComponent.html",
1831       "href": "AbstractComponent.html#Ext-AbstractComponent-method-disable",
1832       "shortDoc": "<p>Disable the component.</p>\n"
1833     },
1834     {
1835       "tagname": "method",
1836       "name": "doAutoRender",
1837       "member": "Ext.AbstractComponent",
1838       "doc": "<p>Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them within that\nownerCt, and have their z-index managed locally. Floating Components are always rendered to document.body</p>\n",
1839       "params": [
1840
1841       ],
1842       "return": {
1843         "type": "void",
1844         "doc": "\n"
1845       },
1846       "private": false,
1847       "static": false,
1848       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1849       "linenr": 816,
1850       "html_filename": "AbstractComponent.html",
1851       "href": "AbstractComponent.html#Ext-AbstractComponent-method-doAutoRender",
1852       "shortDoc": "Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them wit..."
1853     },
1854     {
1855       "tagname": "method",
1856       "name": "doComponentLayout",
1857       "member": "Ext.AbstractComponent",
1858       "doc": "<p>This method needs to be called whenever you change something on this component that requires the Component's\nlayout to be recalculated.</p>\n",
1859       "params": [
1860         {
1861           "type": "Object",
1862           "name": "width",
1863           "doc": "\n",
1864           "optional": false
1865         },
1866         {
1867           "type": "Object",
1868           "name": "height",
1869           "doc": "\n",
1870           "optional": false
1871         },
1872         {
1873           "type": "Object",
1874           "name": "isSetSize",
1875           "doc": "\n",
1876           "optional": false
1877         },
1878         {
1879           "type": "Object",
1880           "name": "ownerCt",
1881           "doc": "\n",
1882           "optional": false
1883         }
1884       ],
1885       "return": {
1886         "type": "Ext.container.Container",
1887         "doc": "<p>this</p>\n"
1888       },
1889       "private": false,
1890       "static": false,
1891       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1892       "linenr": 2437,
1893       "html_filename": "AbstractComponent.html",
1894       "href": "AbstractComponent.html#Ext-AbstractComponent-method-doComponentLayout",
1895       "shortDoc": "This method needs to be called whenever you change something on this component that requires the Component's\nlayout t..."
1896     },
1897     {
1898       "tagname": "method",
1899       "name": "doConstrain",
1900       "member": "Ext.util.Floating",
1901       "doc": "<p>Moves this floating Component into a constrain region.</p>\n\n\n<p>By default, this Component is constrained to be within the container it was added to, or the element\nit was rendered to.</p>\n\n\n<p>An alternative constraint may be passed.</p>\n\n",
1902       "params": [
1903         {
1904           "type": "Mixed",
1905           "name": "constrainTo",
1906           "doc": "<p>Optional. The Element or <a href=\"#/api/Ext.util.Region\" rel=\"Ext.util.Region\" class=\"docClass\">Region</a> into which this Component is to be constrained.</p>\n",
1907           "optional": false
1908         }
1909       ],
1910       "return": {
1911         "type": "void",
1912         "doc": "\n"
1913       },
1914       "private": false,
1915       "static": false,
1916       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1917       "linenr": 133,
1918       "html_filename": "Floating.html",
1919       "href": "Floating.html#Ext-util-Floating-method-doConstrain",
1920       "shortDoc": "Moves this floating Component into a constrain region.\n\n\nBy default, this Component is constrained to be within the c..."
1921     },
1922     {
1923       "tagname": "method",
1924       "name": "doLayout",
1925       "member": "Ext.container.AbstractContainer",
1926       "doc": "<p>Manually force this container's layout to be recalculated.  The framwork uses this internally to refresh layouts\nform most cases.</p>\n",
1927       "params": [
1928
1929       ],
1930       "return": {
1931         "type": "Ext.container.Container",
1932         "doc": "<p>this</p>\n"
1933       },
1934       "private": false,
1935       "static": false,
1936       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1937       "linenr": 321,
1938       "html_filename": "AbstractContainer.html",
1939       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-doLayout",
1940       "shortDoc": "Manually force this container's layout to be recalculated.  The framwork uses this internally to refresh layouts\nform..."
1941     },
1942     {
1943       "tagname": "method",
1944       "name": "down",
1945       "member": "Ext.container.AbstractContainer",
1946       "doc": "<p>Retrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must comply with an <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector.</p>\n",
1947       "params": [
1948         {
1949           "type": "String",
1950           "name": "selector",
1951           "doc": "<p>An <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector</p>\n",
1952           "optional": false
1953         }
1954       ],
1955       "return": {
1956         "type": "void",
1957         "doc": "<p>Ext.Component</p>\n"
1958       },
1959       "private": false,
1960       "static": false,
1961       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1962       "linenr": 792,
1963       "html_filename": "AbstractContainer.html",
1964       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-down",
1965       "shortDoc": "Retrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must compl..."
1966     },
1967     {
1968       "tagname": "method",
1969       "name": "enable",
1970       "member": "Ext.AbstractComponent",
1971       "doc": "<p>Enable the component</p>\n",
1972       "params": [
1973         {
1974           "type": "Boolean",
1975           "name": "silent",
1976           "doc": "<p>Passing false will supress the 'enable' event from being fired.</p>\n",
1977           "optional": false
1978         }
1979       ],
1980       "return": {
1981         "type": "void",
1982         "doc": "\n"
1983       },
1984       "private": false,
1985       "static": false,
1986       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1987       "linenr": 2055,
1988       "html_filename": "AbstractComponent.html",
1989       "href": "AbstractComponent.html#Ext-AbstractComponent-method-enable",
1990       "shortDoc": "<p>Enable the component</p>\n"
1991     },
1992     {
1993       "tagname": "method",
1994       "name": "enableBubble",
1995       "member": "Ext.util.Observable",
1996       "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling\n<code>this.getBubbleTarget()</code> if present. There is no implementation in the Observable base class.</p>\n\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers. See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default\nimplementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.</p>\n\n\n<p>Example:</p>\n\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field&#39;s initComponent to enable the change event to bubble\ninitComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n    this.enableBubble('change');\n}),\n\n//  We know that we want Field&#39;s events to bubble directly to the FormPanel.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\n    change: function() {\n        // Title goes red if form has been modified.\n        myForm.header.setStyle('color', 'red');\n    }\n}\n});\n</code></pre>\n\n",
1997       "params": [
1998         {
1999           "type": "String/Array",
2000           "name": "events",
2001           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
2002           "optional": false
2003         }
2004       ],
2005       "return": {
2006         "type": "void",
2007         "doc": "\n"
2008       },
2009       "private": false,
2010       "static": false,
2011       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2012       "linenr": 554,
2013       "html_filename": "Observable.html",
2014       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
2015       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
2016     },
2017     {
2018       "tagname": "method",
2019       "name": "findLayoutController",
2020       "member": "Ext.AbstractComponent",
2021       "doc": "<p>This method finds the topmost active layout who's processing will eventually determine the size and position of this\nComponent.<p>\n<p>This method is useful when dynamically adding Components into Containers, and some processing must take place after the\nfinal sizing and positioning of the Component has been performed.</p>\n\n",
2022       "params": [
2023
2024       ],
2025       "return": {
2026         "type": "void",
2027         "doc": "\n"
2028       },
2029       "private": false,
2030       "static": false,
2031       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2032       "linenr": 772,
2033       "html_filename": "AbstractComponent.html",
2034       "href": "AbstractComponent.html#Ext-AbstractComponent-method-findLayoutController",
2035       "shortDoc": "This method finds the topmost active layout who's processing will eventually determine the size and position of this\n..."
2036     },
2037     {
2038       "tagname": "method",
2039       "name": "findParentBy",
2040       "member": "Ext.Component",
2041       "doc": "<p>Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the container will be returned.</p>\n",
2042       "params": [
2043         {
2044           "type": "Function",
2045           "name": "fn",
2046           "doc": "<p>The custom function to call with the arguments (container, this component).</p>\n",
2047           "optional": false
2048         }
2049       ],
2050       "return": {
2051         "type": "Ext.container.Container",
2052         "doc": "<p>The first Container for which the custom function returns true</p>\n"
2053       },
2054       "private": false,
2055       "static": false,
2056       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2057       "linenr": 975,
2058       "html_filename": "Component.html",
2059       "href": "Component.html#Ext-Component-method-findParentBy",
2060       "shortDoc": "Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the con..."
2061     },
2062     {
2063       "tagname": "method",
2064       "name": "findParentByType",
2065       "member": "Ext.Component",
2066       "doc": "<p>Find a container above this component at any level by xtype or class</p>\n\n\n<p>See also the <a href=\"#/api/Ext.Component-method-up\" rel=\"Ext.Component-method-up\" class=\"docClass\">up</a> method.</p>\n\n",
2067       "params": [
2068         {
2069           "type": "String/Class",
2070           "name": "xtype",
2071           "doc": "<p>The xtype string for a component, or the class of the component directly</p>\n",
2072           "optional": false
2073         }
2074       ],
2075       "return": {
2076         "type": "Ext.container.Container",
2077         "doc": "<p>The first Container which matches the given xtype or class</p>\n"
2078       },
2079       "private": false,
2080       "static": false,
2081       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2082       "linenr": 989,
2083       "html_filename": "Component.html",
2084       "href": "Component.html#Ext-Component-method-findParentByType",
2085       "shortDoc": "<p>Find a container above this component at any level by xtype or class</p>\n\n\n<p>See also the <a href=\"#/api/Ext.Component-method-up\" rel=\"Ext.Component-method-up\" class=\"docClass\">up</a> method.</p>\n\n"
2086     },
2087     {
2088       "tagname": "method",
2089       "name": "fireEvent",
2090       "member": "Ext.util.Observable",
2091       "doc": "<p>Fires the specified event with the passed parameters (minus the event name).</p>\n\n\n<p>An event may be set to bubble up an Observable parent hierarchy (See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>)\nby calling <a href=\"#/api/Ext.form.FieldContainer-method-enableBubble\" rel=\"Ext.form.FieldContainer-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
2092       "params": [
2093         {
2094           "type": "String",
2095           "name": "eventName",
2096           "doc": "<p>The name of the event to fire.</p>\n",
2097           "optional": false
2098         },
2099         {
2100           "type": "Object...",
2101           "name": "args",
2102           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
2103           "optional": false
2104         }
2105       ],
2106       "return": {
2107         "type": "Boolean",
2108         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
2109       },
2110       "private": false,
2111       "static": false,
2112       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2113       "linenr": 232,
2114       "html_filename": "Observable.html",
2115       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
2116       "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..."
2117     },
2118     {
2119       "tagname": "method",
2120       "name": "focus",
2121       "member": "Ext.Component",
2122       "doc": "<p>Try to focus this component.</p>\n",
2123       "params": [
2124         {
2125           "type": "Boolean",
2126           "name": "selectText",
2127           "doc": "<p>(optional) If applicable, true to also select the text in this component</p>\n",
2128           "optional": true
2129         },
2130         {
2131           "type": "Boolean/Number",
2132           "name": "delay",
2133           "doc": "<p>(optional) Delay the focus this number of milliseconds (true for 10 milliseconds).</p>\n",
2134           "optional": true
2135         }
2136       ],
2137       "return": {
2138         "type": "Ext.Component",
2139         "doc": "<p>this</p>\n"
2140       },
2141       "private": false,
2142       "static": false,
2143       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2144       "linenr": 853,
2145       "html_filename": "Component.html",
2146       "href": "Component.html#Ext-Component-method-focus",
2147       "shortDoc": "<p>Try to focus this component.</p>\n"
2148     },
2149     {
2150       "tagname": "method",
2151       "name": "getActiveAnimation",
2152       "member": "Ext.util.Animate",
2153       "doc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
2154       "params": [
2155
2156       ],
2157       "return": {
2158         "type": "Mixed",
2159         "doc": "<p>anim if element has active effects, else false</p>\n"
2160       },
2161       "private": false,
2162       "static": false,
2163       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
2164       "linenr": 377,
2165       "html_filename": "Animate.html",
2166       "href": "Animate.html#Ext-util-Animate-method-getActiveAnimation",
2167       "shortDoc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n"
2168     },
2169     {
2170       "tagname": "method",
2171       "name": "getActiveError",
2172       "member": "Ext.form.Labelable",
2173       "doc": "<p>Gets the active error message for this component, if any. This does not trigger\nvalidation on its own, it merely returns any message that the component may already hold.</p>\n",
2174       "params": [
2175
2176       ],
2177       "return": {
2178         "type": "String",
2179         "doc": "<p>The active error message on the component; if there is no error, an empty string is returned.</p>\n"
2180       },
2181       "private": false,
2182       "static": false,
2183       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
2184       "linenr": 330,
2185       "html_filename": "Labelable.html",
2186       "href": "Labelable.html#Ext-form-Labelable-method-getActiveError",
2187       "shortDoc": "Gets the active error message for this component, if any. This does not trigger\nvalidation on its own, it merely retu..."
2188     },
2189     {
2190       "tagname": "method",
2191       "name": "getActiveErrors",
2192       "member": "Ext.form.Labelable",
2193       "doc": "<p>Gets an Array of any active error messages currently applied to the field. This does not trigger\nvalidation on its own, it merely returns any messages that the component may already hold.</p>\n",
2194       "params": [
2195
2196       ],
2197       "return": {
2198         "type": "Array",
2199         "doc": "<p>The active error messages on the component; if there are no errors, an empty Array is returned.</p>\n"
2200       },
2201       "private": false,
2202       "static": false,
2203       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
2204       "linenr": 360,
2205       "html_filename": "Labelable.html",
2206       "href": "Labelable.html#Ext-form-Labelable-method-getActiveErrors",
2207       "shortDoc": "Gets an Array of any active error messages currently applied to the field. This does not trigger\nvalidation on its ow..."
2208     },
2209     {
2210       "tagname": "method",
2211       "name": "getBox",
2212       "member": "Ext.Component",
2213       "doc": "<p>Gets the current box measurements of the component's underlying element.</p>\n",
2214       "params": [
2215         {
2216           "type": "Boolean",
2217           "name": "local",
2218           "doc": "<p>(optional) If true the element's left and top are returned instead of page XY (defaults to false)</p>\n",
2219           "optional": true
2220         }
2221       ],
2222       "return": {
2223         "type": "Object",
2224         "doc": "<p>box An object in the format {x, y, width, height}</p>\n"
2225       },
2226       "private": false,
2227       "static": false,
2228       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2229       "linenr": 538,
2230       "html_filename": "Component.html",
2231       "href": "Component.html#Ext-Component-method-getBox",
2232       "shortDoc": "<p>Gets the current box measurements of the component's underlying element.</p>\n"
2233     },
2234     {
2235       "tagname": "method",
2236       "name": "getBubbleTarget",
2237       "member": "Ext.AbstractComponent",
2238       "doc": "<p>Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.</p>\n",
2239       "params": [
2240
2241       ],
2242       "return": {
2243         "type": "Ext.container.Container",
2244         "doc": "<p>the Container which owns this Component.</p>\n"
2245       },
2246       "private": false,
2247       "static": false,
2248       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2249       "linenr": 2276,
2250       "html_filename": "AbstractComponent.html",
2251       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getBubbleTarget",
2252       "shortDoc": "<p>Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.</p>\n"
2253     },
2254     {
2255       "tagname": "method",
2256       "name": "getChildByElement",
2257       "member": "Ext.container.Container",
2258       "doc": "<p>Return the immediate child Component in which the passed element is located.</p>\n",
2259       "params": [
2260         {
2261           "type": "Object",
2262           "name": "el",
2263           "doc": "<p>The element to test.</p>\n",
2264           "optional": false
2265         }
2266       ],
2267       "return": {
2268         "type": "Component",
2269         "doc": "<p>The child item which contains the passed element.</p>\n"
2270       },
2271       "private": false,
2272       "static": false,
2273       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/container/Container.js",
2274       "linenr": 162,
2275       "html_filename": "Container.html",
2276       "href": "Container.html#Ext-container-Container-method-getChildByElement",
2277       "shortDoc": "<p>Return the immediate child Component in which the passed element is located.</p>\n"
2278     },
2279     {
2280       "tagname": "method",
2281       "name": "getCombinedErrors",
2282       "member": "Ext.form.FieldContainer",
2283       "doc": "<p>Takes an Array of invalid <a href=\"#/api/Ext.form.field.Field\" rel=\"Ext.form.field.Field\" class=\"docClass\">Ext.form.field.Field</a> objects and builds a combined list of error\nmessages from them. Defaults to prepending each message by the field name and a colon. This\ncan be overridden to provide custom combined error message handling, for instance changing\nthe format of each message or sorting the array (it is sorted in order of appearance by default).</p>\n",
2284       "params": [
2285         {
2286           "type": "Array",
2287           "name": "invalidFields",
2288           "doc": "<p>An Array of the sub-fields which are currently invalid.</p>\n",
2289           "optional": false
2290         }
2291       ],
2292       "return": {
2293         "type": "Array",
2294         "doc": "<p>The combined list of error messages</p>\n"
2295       },
2296       "private": false,
2297       "static": false,
2298       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
2299       "linenr": 244,
2300       "html_filename": "FieldContainer.html",
2301       "href": "FieldContainer.html#Ext-form-FieldContainer-method-getCombinedErrors",
2302       "shortDoc": "Takes an Array of invalid Ext.form.field.Field objects and builds a combined list of error\nmessages from them. Defaul..."
2303     },
2304     {
2305       "tagname": "method",
2306       "name": "getComponent",
2307       "member": "Ext.container.AbstractContainer",
2308       "doc": "<p>Examines this container's <code><a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a></code> <b>property</b>\nand gets a direct child component of this container.</p>\n",
2309       "params": [
2310         {
2311           "type": "String/Number",
2312           "name": "comp",
2313           "doc": "<p>This parameter may be any of the following:</p>\n\n<div><ul class=\"mdetail-params\">\n<li>a <b><code>String</code></b> : representing the <code><a href=\"#/api/Ext.Component-cfg-itemId\" rel=\"Ext.Component-cfg-itemId\" class=\"docClass\">itemId</a></code>\nor <code><a href=\"#/api/Ext.Component-cfg-id\" rel=\"Ext.Component-cfg-id\" class=\"docClass\">id</a></code> of the child component </li>\n<li>a <b><code>Number</code></b> : representing the position of the child component\nwithin the <code><a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a></code> <b>property</b></li>\n</ul></div>\n\n\n<p>For additional information see <a href=\"#/api/Ext.util.MixedCollection-method-get\" rel=\"Ext.util.MixedCollection-method-get\" class=\"docClass\">Ext.util.MixedCollection.get</a>.\n\n",
2314           "optional": false
2315         }
2316       ],
2317       "return": {
2318         "type": "void",
2319         "doc": "<p>Ext.Component The component (if found).</p>\n"
2320       },
2321       "private": false,
2322       "static": false,
2323       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
2324       "linenr": 751,
2325       "html_filename": "AbstractContainer.html",
2326       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-getComponent",
2327       "shortDoc": "<p>Examines this container's <code><a href=\"#/api/Ext.form.FieldContainer-property-items\" rel=\"Ext.form.FieldContainer-property-items\" class=\"docClass\">items</a></code> <b>property</b>\nand gets a direct child component of this container.</p>\n"
2328     },
2329     {
2330       "tagname": "method",
2331       "name": "getEl",
2332       "member": "Ext.AbstractComponent",
2333       "doc": "<p>Retrieves the top level element representing this component.</p>\n",
2334       "params": [
2335
2336       ],
2337       "return": {
2338         "type": "void",
2339         "doc": "\n"
2340       },
2341       "private": false,
2342       "static": false,
2343       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2344       "linenr": 1892,
2345       "html_filename": "AbstractComponent.html",
2346       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getEl",
2347       "shortDoc": "<p>Retrieves the top level element representing this component.</p>\n"
2348     },
2349     {
2350       "tagname": "method",
2351       "name": "getFieldLabel",
2352       "member": "Ext.form.FieldContainer",
2353       "doc": "<p>Returns the combined field label if <a href=\"#/api/Ext.form.FieldContainer-cfg-combineLabels\" rel=\"Ext.form.FieldContainer-cfg-combineLabels\" class=\"docClass\">combineLabels</a> is set to true and if there is no\nset <a href=\"#/api/Ext.form.FieldContainer-cfg-fieldLabel\" rel=\"Ext.form.FieldContainer-cfg-fieldLabel\" class=\"docClass\">fieldLabel</a>. Otherwise returns the fieldLabel like normal. You can also override\nthis method to provide a custom generated label.</p>\n",
2354       "params": [
2355
2356       ],
2357       "return": {
2358         "type": "void",
2359         "doc": "\n"
2360       },
2361       "private": false,
2362       "static": false,
2363       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
2364       "linenr": 192,
2365       "html_filename": "FieldContainer.html",
2366       "href": "FieldContainer.html#Ext-form-FieldContainer-method-getFieldLabel",
2367       "shortDoc": "Returns the combined field label if combineLabels is set to true and if there is no\nset fieldLabel. Otherwise returns..."
2368     },
2369     {
2370       "tagname": "method",
2371       "name": "getHeight",
2372       "member": "Ext.AbstractComponent",
2373       "doc": "<p>Gets the current height of the component's underlying element.</p>\n",
2374       "params": [
2375
2376       ],
2377       "return": {
2378         "type": "Number",
2379         "doc": "\n"
2380       },
2381       "private": false,
2382       "static": false,
2383       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2384       "linenr": 2579,
2385       "html_filename": "AbstractComponent.html",
2386       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getHeight",
2387       "shortDoc": "<p>Gets the current height of the component's underlying element.</p>\n"
2388     },
2389     {
2390       "tagname": "method",
2391       "name": "getId",
2392       "member": "Ext.AbstractComponent",
2393       "doc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n",
2394       "params": [
2395
2396       ],
2397       "return": {
2398         "type": "void",
2399         "doc": "\n"
2400       },
2401       "private": false,
2402       "static": false,
2403       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2404       "linenr": 1880,
2405       "html_filename": "AbstractComponent.html",
2406       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getId",
2407       "shortDoc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n"
2408     },
2409     {
2410       "tagname": "method",
2411       "name": "getInputId",
2412       "member": "Ext.form.Labelable",
2413       "doc": "<p>Get the input id, if any, for this component. This is used as the \"for\" attribute on the label element.\nImplementing subclasses may also use this as e.g. the id for their own <tt>input</tt> element.</p>\n",
2414       "params": [
2415
2416       ],
2417       "return": {
2418         "type": "String",
2419         "doc": "<p>The input id</p>\n"
2420       },
2421       "private": false,
2422       "static": false,
2423       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
2424       "linenr": 321,
2425       "html_filename": "Labelable.html",
2426       "href": "Labelable.html#Ext-form-Labelable-method-getInputId",
2427       "shortDoc": "Get the input id, if any, for this component. This is used as the \"for\" attribute on the label element.\nImplementing ..."
2428     },
2429     {
2430       "tagname": "method",
2431       "name": "getInsertPosition",
2432       "member": "Ext.AbstractComponent",
2433       "doc": "<p>This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insertBefore.</p>\n",
2434       "params": [
2435         {
2436           "type": "String/Number/Element/HTMLElement",
2437           "name": "position",
2438           "doc": "<p>Index, element id or element you want\nto put this component before.</p>\n",
2439           "optional": false
2440         }
2441       ],
2442       "return": {
2443         "type": "HTMLElement",
2444         "doc": "<p>DOM element that you can use in the insertBefore</p>\n"
2445       },
2446       "private": false,
2447       "static": false,
2448       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2449       "linenr": 1513,
2450       "html_filename": "AbstractComponent.html",
2451       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getInsertPosition",
2452       "shortDoc": "This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insert..."
2453     },
2454     {
2455       "tagname": "method",
2456       "name": "getLayout",
2457       "member": "Ext.container.AbstractContainer",
2458       "doc": "<p>Returns the <a href=\"#/api/Ext.layout.container.AbstractContainer\" rel=\"Ext.layout.container.AbstractContainer\" class=\"docClass\">layout</a> instance currently associated with this Container.\nIf a layout has not been instantiated yet, that is done first</p>\n",
2459       "params": [
2460
2461       ],
2462       "return": {
2463         "type": "Ext.layout.container.AbstractContainer",
2464         "doc": "<p>The layout</p>\n"
2465       },
2466       "private": false,
2467       "static": false,
2468       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
2469       "linenr": 307,
2470       "html_filename": "AbstractContainer.html",
2471       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-getLayout",
2472       "shortDoc": "Returns the layout instance currently associated with this Container.\nIf a layout has not been instantiated yet, that..."
2473     },
2474     {
2475       "tagname": "method",
2476       "name": "getLoader",
2477       "member": "Ext.AbstractComponent",
2478       "doc": "<p>Gets the <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> for this Component.</p>\n",
2479       "params": [
2480
2481       ],
2482       "return": {
2483         "type": "Ext.ComponentLoader",
2484         "doc": "<p>The loader instance, null if it doesn't exist.</p>\n"
2485       },
2486       "private": false,
2487       "static": false,
2488       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2489       "linenr": 2587,
2490       "html_filename": "AbstractComponent.html",
2491       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getLoader",
2492       "shortDoc": "<p>Gets the <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> for this Component.</p>\n"
2493     },
2494     {
2495       "tagname": "method",
2496       "name": "getPlugin",
2497       "member": "Ext.AbstractComponent",
2498       "doc": "<p>Retrieves a plugin by its pluginId which has been bound to this\ncomponent.</p>\n",
2499       "params": [
2500         {
2501           "type": "Object",
2502           "name": "pluginId",
2503           "doc": "\n",
2504           "optional": false
2505         }
2506       ],
2507       "return": {
2508         "type": "Ext.AbstractPlugin",
2509         "doc": "<p>pluginInstance</p>\n"
2510       },
2511       "private": false,
2512       "static": false,
2513       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2514       "linenr": 2715,
2515       "html_filename": "AbstractComponent.html",
2516       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getPlugin",
2517       "shortDoc": "<p>Retrieves a plugin by its pluginId which has been bound to this\ncomponent.</p>\n"
2518     },
2519     {
2520       "tagname": "method",
2521       "name": "getPosition",
2522       "member": "Ext.Component",
2523       "doc": "<p>Gets the current XY position of the component's underlying element.</p>\n",
2524       "params": [
2525         {
2526           "type": "Boolean",
2527           "name": "local",
2528           "doc": "<p>(optional) If true the element's left and top are returned instead of page XY (defaults to false)</p>\n",
2529           "optional": true
2530         }
2531       ],
2532       "return": {
2533         "type": "Array",
2534         "doc": "<p>The XY position of the element (e.g., [100, 200])</p>\n"
2535       },
2536       "private": false,
2537       "static": false,
2538       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2539       "linenr": 603,
2540       "html_filename": "Component.html",
2541       "href": "Component.html#Ext-Component-method-getPosition",
2542       "shortDoc": "<p>Gets the current XY position of the component's underlying element.</p>\n"
2543     },
2544     {
2545       "tagname": "method",
2546       "name": "getSize",
2547       "member": "Ext.AbstractComponent",
2548       "doc": "<p>Gets the current size of the component's underlying element.</p>\n",
2549       "params": [
2550
2551       ],
2552       "return": {
2553         "type": "Object",
2554         "doc": "<p>An object containing the element's size {width: (element width), height: (element height)}</p>\n"
2555       },
2556       "private": false,
2557       "static": false,
2558       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2559       "linenr": 2563,
2560       "html_filename": "AbstractComponent.html",
2561       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getSize",
2562       "shortDoc": "<p>Gets the current size of the component's underlying element.</p>\n"
2563     },
2564     {
2565       "tagname": "method",
2566       "name": "getState",
2567       "member": "Ext.state.Stateful",
2568       "doc": "<p>Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to implement methods for getting the state.</p>\n",
2569       "params": [
2570
2571       ],
2572       "return": {
2573         "type": "Object",
2574         "doc": "<p>The current state</p>\n"
2575       },
2576       "private": false,
2577       "static": false,
2578       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
2579       "linenr": 216,
2580       "html_filename": "Stateful.html",
2581       "href": "Stateful.html#Ext-state-Stateful-method-getState",
2582       "shortDoc": "Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to..."
2583     },
2584     {
2585       "tagname": "method",
2586       "name": "getStateId",
2587       "member": "Ext.state.Stateful",
2588       "doc": "<p>Gets the state id for this object.</p>\n",
2589       "params": [
2590
2591       ],
2592       "return": {
2593         "type": "String",
2594         "doc": "<p>The state id, null if not found.</p>\n"
2595       },
2596       "private": false,
2597       "static": false,
2598       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
2599       "linenr": 237,
2600       "html_filename": "Stateful.html",
2601       "href": "Stateful.html#Ext-state-Stateful-method-getStateId",
2602       "shortDoc": "<p>Gets the state id for this object.</p>\n"
2603     },
2604     {
2605       "tagname": "method",
2606       "name": "getWidth",
2607       "member": "Ext.AbstractComponent",
2608       "doc": "<p>Gets the current width of the component's underlying element.</p>\n",
2609       "params": [
2610
2611       ],
2612       "return": {
2613         "type": "Number",
2614         "doc": "\n"
2615       },
2616       "private": false,
2617       "static": false,
2618       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2619       "linenr": 2571,
2620       "html_filename": "AbstractComponent.html",
2621       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getWidth",
2622       "shortDoc": "<p>Gets the current width of the component's underlying element.</p>\n"
2623     },
2624     {
2625       "tagname": "method",
2626       "name": "getXType",
2627       "member": "Ext.Component",
2628       "doc": "<p>Gets the xtype for this component as registered with <a href=\"#/api/Ext.ComponentManager\" rel=\"Ext.ComponentManager\" class=\"docClass\">Ext.ComponentManager</a>. For a list of all\navailable xtypes, see the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> header. Example usage:</p>\n\n<pre><code>var t = new Ext.form.field.Text();\nalert(t.getXType());  // alerts 'textfield'\n</code></pre>\n\n",
2629       "params": [
2630
2631       ],
2632       "return": {
2633         "type": "String",
2634         "doc": "<p>The xtype</p>\n"
2635       },
2636       "private": false,
2637       "static": false,
2638       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2639       "linenr": 962,
2640       "html_filename": "Component.html",
2641       "href": "Component.html#Ext-Component-method-getXType",
2642       "shortDoc": "Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all\navailable xtypes, see th..."
2643     },
2644     {
2645       "tagname": "method",
2646       "name": "getXTypes",
2647       "member": "Ext.AbstractComponent",
2648       "doc": "<p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> header.</p>\n\n\n<p><b>If using your own subclasses, be aware that a Component must register its own xtype\nto participate in determination of inherited xtypes.</b></p>\n\n\n<p>Example usage:</p>\n\n\n<pre><code>var t = new Ext.form.field.Text();\nalert(t.getXTypes());  // alerts 'component/field/textfield'\n</code></pre>\n\n",
2649       "params": [
2650
2651       ],
2652       "return": {
2653         "type": "String",
2654         "doc": "<p>The xtype hierarchy string</p>\n"
2655       },
2656       "private": false,
2657       "static": false,
2658       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2659       "linenr": 1938,
2660       "html_filename": "AbstractComponent.html",
2661       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getXTypes",
2662       "shortDoc": "Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the Ext..."
2663     },
2664     {
2665       "tagname": "method",
2666       "name": "hasActiveError",
2667       "member": "Ext.form.Labelable",
2668       "doc": "<p>Tells whether the field currently has an active error message. This does not trigger\nvalidation on its own, it merely looks for any message that the component may already hold.</p>\n",
2669       "params": [
2670
2671       ],
2672       "return": {
2673         "type": "Boolean",
2674         "doc": "\n"
2675       },
2676       "private": false,
2677       "static": false,
2678       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
2679       "linenr": 339,
2680       "html_filename": "Labelable.html",
2681       "href": "Labelable.html#Ext-form-Labelable-method-hasActiveError",
2682       "shortDoc": "Tells whether the field currently has an active error message. This does not trigger\nvalidation on its own, it merely..."
2683     },
2684     {
2685       "tagname": "method",
2686       "name": "hasActiveFx",
2687       "member": "Ext.util.Animate",
2688       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.form.FieldContainer-method-getActiveAnimation\" rel=\"Ext.form.FieldContainer-method-getActiveAnimation\" class=\"docClass\">getActiveAnimation</a>\nReturns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
2689       "params": [
2690
2691       ],
2692       "return": {
2693         "type": "Mixed",
2694         "doc": "<p>anim if element has active effects, else false</p>\n"
2695       },
2696       "private": false,
2697       "static": false,
2698       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
2699       "linenr": 369,
2700       "html_filename": "Animate.html",
2701       "href": "Animate.html#Ext-util-Animate-method-hasActiveFx",
2702       "shortDoc": "@deprecated 4.0 Replaced by getActiveAnimation\nReturns thq current animation if this object has any effects actively ..."
2703     },
2704     {
2705       "tagname": "method",
2706       "name": "hasListener",
2707       "member": "Ext.util.Observable",
2708       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
2709       "params": [
2710         {
2711           "type": "String",
2712           "name": "eventName",
2713           "doc": "<p>The name of the event to check for</p>\n",
2714           "optional": false
2715         }
2716       ],
2717       "return": {
2718         "type": "Boolean",
2719         "doc": "<p>True if the event is being listened for, else false</p>\n"
2720       },
2721       "private": false,
2722       "static": false,
2723       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2724       "linenr": 480,
2725       "html_filename": "Observable.html",
2726       "href": "Observable.html#Ext-util-Observable-method-hasListener",
2727       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
2728     },
2729     {
2730       "tagname": "method",
2731       "name": "hasUICls",
2732       "member": "Ext.AbstractComponent",
2733       "doc": "<p>Checks if there is currently a specified uiCls</p>\n",
2734       "params": [
2735         {
2736           "type": "String",
2737           "name": "cls",
2738           "doc": "<p>The cls to check</p>\n",
2739           "optional": false
2740         }
2741       ],
2742       "return": {
2743         "type": "void",
2744         "doc": "\n"
2745       },
2746       "private": false,
2747       "static": false,
2748       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2749       "linenr": 1389,
2750       "html_filename": "AbstractComponent.html",
2751       "href": "AbstractComponent.html#Ext-AbstractComponent-method-hasUICls",
2752       "shortDoc": "<p>Checks if there is currently a specified uiCls</p>\n"
2753     },
2754     {
2755       "tagname": "method",
2756       "name": "hide",
2757       "member": "Ext.Component",
2758       "doc": "<p>Hides this Component, setting it to invisible using the configured <a href=\"#/api/Ext.form.FieldContainer-cfg-hideMode\" rel=\"Ext.form.FieldContainer-cfg-hideMode\" class=\"docClass\">hideMode</a>.</p>\n",
2759       "params": [
2760         {
2761           "type": "String/Element/Component",
2762           "name": "animateTarget",
2763           "doc": "<p>Optional, and <b>only valid for <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components such as\n<a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s or <a href=\"#/api/Ext.tip.ToolTip\" rel=\"Ext.tip.ToolTip\" class=\"docClass\">ToolTip</a>s, or regular Components which have been configured\nwith <code>floating: true</code>.</b>.\nThe target to which the Component should animate while hiding (defaults to null with no animation)</p>\n",
2764           "optional": false
2765         },
2766         {
2767           "type": "Function",
2768           "name": "callback",
2769           "doc": "<p>(optional) A callback function to call after the Component is hidden.</p>\n",
2770           "optional": true
2771         },
2772         {
2773           "type": "Object",
2774           "name": "scope",
2775           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Component.</p>\n",
2776           "optional": true
2777         }
2778       ],
2779       "return": {
2780         "type": "Ext.Component",
2781         "doc": "<p>this</p>\n"
2782       },
2783       "private": false,
2784       "static": false,
2785       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2786       "linenr": 748,
2787       "html_filename": "Component.html",
2788       "href": "Component.html#Ext-Component-method-hide",
2789       "shortDoc": "<p>Hides this Component, setting it to invisible using the configured <a href=\"#/api/Ext.form.FieldContainer-cfg-hideMode\" rel=\"Ext.form.FieldContainer-cfg-hideMode\" class=\"docClass\">hideMode</a>.</p>\n"
2790     },
2791     {
2792       "tagname": "method",
2793       "name": "initLabelable",
2794       "member": "Ext.form.Labelable",
2795       "doc": "<p>Performs initialization of this mixin. Component classes using this mixin should call this method\nduring their own initialization.</p>\n",
2796       "params": [
2797
2798       ],
2799       "return": {
2800         "type": "void",
2801         "doc": "\n"
2802       },
2803       "private": false,
2804       "static": false,
2805       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
2806       "linenr": 214,
2807       "html_filename": "Labelable.html",
2808       "href": "Labelable.html#Ext-form-Labelable-method-initLabelable",
2809       "shortDoc": "Performs initialization of this mixin. Component classes using this mixin should call this method\nduring their own in..."
2810     },
2811     {
2812       "tagname": "method",
2813       "name": "insert",
2814       "member": "Ext.container.AbstractContainer",
2815       "doc": "<p>Inserts a Component into this Container at a specified index. Fires the\n<a href=\"#/api/Ext.form.FieldContainer-event-beforeadd\" rel=\"Ext.form.FieldContainer-event-beforeadd\" class=\"docClass\">beforeadd</a> event before inserting, then fires the <a href=\"#/api/Ext.form.FieldContainer-event-add\" rel=\"Ext.form.FieldContainer-event-add\" class=\"docClass\">add</a> event after the\nComponent has been inserted.</p>\n",
2816       "params": [
2817         {
2818           "type": "Number",
2819           "name": "index",
2820           "doc": "<p>The index at which the Component will be inserted\ninto the Container's items collection</p>\n",
2821           "optional": false
2822         },
2823         {
2824           "type": "Ext.Component",
2825           "name": "component",
2826           "doc": "<p>The child Component to insert.<br><br>\n<a href=\"#/api/Ext\" rel=\"Ext\" class=\"docClass\">Ext</a> uses lazy rendering, and will only render the inserted Component should\nit become necessary.<br><br>\nA Component config object may be passed in order to avoid the overhead of\nconstructing a real Component object if lazy rendering might mean that the\ninserted Component will not be rendered immediately. To take advantage of\nthis 'lazy instantiation', set the <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">Ext.Component.xtype</a> config\nproperty to the registered type of the Component wanted.<br><br>\nFor a list of all available xtypes, see <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a>.</p>\n",
2827           "optional": false
2828         }
2829       ],
2830       "return": {
2831         "type": "Ext.Component",
2832         "doc": "<p>component The Component (or config object) that was\ninserted with the Container's default config values applied.</p>\n"
2833       },
2834       "private": false,
2835       "static": false,
2836       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
2837       "linenr": 547,
2838       "html_filename": "AbstractContainer.html",
2839       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-insert",
2840       "shortDoc": "Inserts a Component into this Container at a specified index. Fires the\nbeforeadd event before inserting, then fires ..."
2841     },
2842     {
2843       "tagname": "method",
2844       "name": "is",
2845       "member": "Ext.AbstractComponent",
2846       "doc": "<p>Tests whether this Component matches the selector string.</p>\n",
2847       "params": [
2848         {
2849           "type": "String",
2850           "name": "selector",
2851           "doc": "<p>The selector string to test against.</p>\n",
2852           "optional": false
2853         }
2854       ],
2855       "return": {
2856         "type": "Boolean",
2857         "doc": "<p>True if this Component matches the selector.</p>\n"
2858       },
2859       "private": false,
2860       "static": false,
2861       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2862       "linenr": 1719,
2863       "html_filename": "AbstractComponent.html",
2864       "href": "AbstractComponent.html#Ext-AbstractComponent-method-is",
2865       "shortDoc": "<p>Tests whether this Component matches the selector string.</p>\n"
2866     },
2867     {
2868       "tagname": "method",
2869       "name": "isDescendantOf",
2870       "member": "Ext.AbstractComponent",
2871       "doc": "<p>Determines whether this component is the descendant of a particular container.</p>\n",
2872       "params": [
2873         {
2874           "type": "Ext.Container",
2875           "name": "container",
2876           "doc": "\n",
2877           "optional": false
2878         }
2879       ],
2880       "return": {
2881         "type": "Boolean",
2882         "doc": "<p>isDescendant</p>\n"
2883       },
2884       "private": false,
2885       "static": false,
2886       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2887       "linenr": 2731,
2888       "html_filename": "AbstractComponent.html",
2889       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDescendantOf",
2890       "shortDoc": "<p>Determines whether this component is the descendant of a particular container.</p>\n"
2891     },
2892     {
2893       "tagname": "method",
2894       "name": "isDisabled",
2895       "member": "Ext.AbstractComponent",
2896       "doc": "<p>Method to determine whether this Component is currently disabled.</p>\n",
2897       "params": [
2898
2899       ],
2900       "return": {
2901         "type": "Boolean",
2902         "doc": "<p>the disabled state of this Component.</p>\n"
2903       },
2904       "private": false,
2905       "static": false,
2906       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2907       "linenr": 2115,
2908       "html_filename": "AbstractComponent.html",
2909       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDisabled",
2910       "shortDoc": "<p>Method to determine whether this Component is currently disabled.</p>\n"
2911     },
2912     {
2913       "tagname": "method",
2914       "name": "isDraggable",
2915       "member": "Ext.AbstractComponent",
2916       "doc": "<p>Method to determine whether this Component is draggable.</p>\n",
2917       "params": [
2918
2919       ],
2920       "return": {
2921         "type": "Boolean",
2922         "doc": "<p>the draggable state of this component.</p>\n"
2923       },
2924       "private": false,
2925       "static": false,
2926       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2927       "linenr": 2292,
2928       "html_filename": "AbstractComponent.html",
2929       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDraggable",
2930       "shortDoc": "<p>Method to determine whether this Component is draggable.</p>\n"
2931     },
2932     {
2933       "tagname": "method",
2934       "name": "isDroppable",
2935       "member": "Ext.AbstractComponent",
2936       "doc": "<p>Method to determine whether this Component is droppable.</p>\n",
2937       "params": [
2938
2939       ],
2940       "return": {
2941         "type": "Boolean",
2942         "doc": "<p>the droppable state of this component.</p>\n"
2943       },
2944       "private": false,
2945       "static": false,
2946       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2947       "linenr": 2300,
2948       "html_filename": "AbstractComponent.html",
2949       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDroppable",
2950       "shortDoc": "<p>Method to determine whether this Component is droppable.</p>\n"
2951     },
2952     {
2953       "tagname": "method",
2954       "name": "isFloating",
2955       "member": "Ext.AbstractComponent",
2956       "doc": "<p>Method to determine whether this Component is floating.</p>\n",
2957       "params": [
2958
2959       ],
2960       "return": {
2961         "type": "Boolean",
2962         "doc": "<p>the floating state of this component.</p>\n"
2963       },
2964       "private": false,
2965       "static": false,
2966       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2967       "linenr": 2284,
2968       "html_filename": "AbstractComponent.html",
2969       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isFloating",
2970       "shortDoc": "<p>Method to determine whether this Component is floating.</p>\n"
2971     },
2972     {
2973       "tagname": "method",
2974       "name": "isHidden",
2975       "member": "Ext.AbstractComponent",
2976       "doc": "<p>Method to determine whether this Component is currently set to hidden.</p>\n",
2977       "params": [
2978
2979       ],
2980       "return": {
2981         "type": "Boolean",
2982         "doc": "<p>the hidden state of this Component.</p>\n"
2983       },
2984       "private": false,
2985       "static": false,
2986       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2987       "linenr": 2131,
2988       "html_filename": "AbstractComponent.html",
2989       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isHidden",
2990       "shortDoc": "<p>Method to determine whether this Component is currently set to hidden.</p>\n"
2991     },
2992     {
2993       "tagname": "method",
2994       "name": "isVisible",
2995       "member": "Ext.AbstractComponent",
2996       "doc": "<p>Returns true if this component is visible.</p>\n",
2997       "params": [
2998         {
2999           "type": "Boolean",
3000           "name": "deep",
3001           "doc": "<p>. <p>Optional. Pass <code>true</code> to interrogate the visibility status of all\nparent Containers to determine whether this Component is truly visible to the user.</p></p>\n\n<p>Generally, to determine whether a Component is hidden, the no argument form is needed. For example\nwhen creating dynamically laid out UIs in a hidden Container before showing them.</p>\n\n",
3002           "optional": false
3003         }
3004       ],
3005       "return": {
3006         "type": "Boolean",
3007         "doc": "<p>True if this component is visible, false otherwise.</p>\n"
3008       },
3009       "private": false,
3010       "static": false,
3011       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3012       "linenr": 2015,
3013       "html_filename": "AbstractComponent.html",
3014       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isVisible",
3015       "shortDoc": "<p>Returns true if this component is visible.</p>\n"
3016     },
3017     {
3018       "tagname": "method",
3019       "name": "isXType",
3020       "member": "Ext.AbstractComponent",
3021       "doc": "<p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>\n\n\n<p><b>If using your own subclasses, be aware that a Component must register its own xtype\nto participate in determination of inherited xtypes.</b></p>\n\n\n<p>For a list of all available xtypes, see the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> header.</p>\n\n\n<p>Example usage:</p>\n\n\n<pre><code>var t = new Ext.form.field.Text();\nvar isText = t.isXType('textfield');        // true\nvar isBoxSubclass = t.isXType('field');       // true, descended from <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">Ext.form.field.Base</a>\nvar isBoxInstance = t.isXType('field', true); // false, not a direct <a href=\"#/api/Ext.form.field.Base\" rel=\"Ext.form.field.Base\" class=\"docClass\">Ext.form.field.Base</a> instance\n</code></pre>\n\n",
3022       "params": [
3023         {
3024           "type": "String",
3025           "name": "xtype",
3026           "doc": "<p>The xtype to check for this Component</p>\n",
3027           "optional": false
3028         },
3029         {
3030           "type": "Boolean",
3031           "name": "shallow",
3032           "doc": "<p>(optional) False to check whether this Component is descended from the xtype (this is\nthe default), or true to check whether this Component is directly of the specified xtype.</p>\n",
3033           "optional": true
3034         }
3035       ],
3036       "return": {
3037         "type": "Boolean",
3038         "doc": "<p>True if this component descends from the specified xtype, false otherwise.</p>\n"
3039       },
3040       "private": false,
3041       "static": false,
3042       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3043       "linenr": 1907,
3044       "html_filename": "AbstractComponent.html",
3045       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isXType",
3046       "shortDoc": "Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom th..."
3047     },
3048     {
3049       "tagname": "method",
3050       "name": "move",
3051       "member": "Ext.container.AbstractContainer",
3052       "doc": "<p>Moves a Component within the Container</p>\n",
3053       "params": [
3054         {
3055           "type": "Number",
3056           "name": "fromIdx",
3057           "doc": "<p>The index the Component you wish to move is currently at.</p>\n",
3058           "optional": false
3059         },
3060         {
3061           "type": "Number",
3062           "name": "toIdx",
3063           "doc": "<p>The new index for the Component.</p>\n",
3064           "optional": false
3065         }
3066       ],
3067       "return": {
3068         "type": "Ext.Component",
3069         "doc": "<p>component The Component (or config object) that was moved.</p>\n"
3070       },
3071       "private": false,
3072       "static": false,
3073       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3074       "linenr": 569,
3075       "html_filename": "AbstractContainer.html",
3076       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-move",
3077       "shortDoc": "<p>Moves a Component within the Container</p>\n"
3078     },
3079     {
3080       "tagname": "method",
3081       "name": "nextNode",
3082       "member": "Ext.AbstractComponent",
3083       "doc": "<p>Returns the next node in the Component tree in tree traversal order.</p>\n\n\n<p>Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will\nwalk the tree to attempt to find a match. Contrast with <a href=\"#/api/Ext.form.FieldContainer--pnextSibling\" rel=\"Ext.form.FieldContainer--pnextSibling\" class=\"docClass\">pnextSibling</a>.</p>\n\n",
3084       "params": [
3085         {
3086           "type": "String",
3087           "name": "selector",
3088           "doc": "<p>Optional A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the following nodes.</p>\n",
3089           "optional": false
3090         },
3091         {
3092           "type": "Object",
3093           "name": "includeSelf",
3094           "doc": "\n",
3095           "optional": false
3096         }
3097       ],
3098       "return": {
3099         "type": "void",
3100         "doc": "<p>The next node (or the next node which matches the selector). Returns null if there is no matching node.</p>\n"
3101       },
3102       "private": false,
3103       "static": false,
3104       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3105       "linenr": 1845,
3106       "html_filename": "AbstractComponent.html",
3107       "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextNode",
3108       "shortDoc": "Returns the next node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings, and..."
3109     },
3110     {
3111       "tagname": "method",
3112       "name": "nextSibling",
3113       "member": "Ext.AbstractComponent",
3114       "doc": "<p>Returns the next sibling of this Component.</p>\n\n\n<p>Optionally selects the next sibling which matches the passed <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector.</p>\n\n\n<p>May also be refered to as <code><b>next()</b></code></p>\n\n\n<p>Note that this is limited to siblings, and if no siblings of the item match, <code>null</code> is returned. Contrast with <a href=\"#/api/Ext.form.FieldContainer-method-nextNode\" rel=\"Ext.form.FieldContainer-method-nextNode\" class=\"docClass\">nextNode</a></p>\n\n",
3115       "params": [
3116         {
3117           "type": "String",
3118           "name": "selector",
3119           "doc": "<p>Optional A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the following items.</p>\n",
3120           "optional": false
3121         }
3122       ],
3123       "return": {
3124         "type": "void",
3125         "doc": "<p>The next sibling (or the next sibling which matches the selector). Returns null if there is no matching sibling.</p>\n"
3126       },
3127       "private": false,
3128       "static": false,
3129       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3130       "linenr": 1749,
3131       "html_filename": "AbstractComponent.html",
3132       "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextSibling",
3133       "shortDoc": "Returns the next sibling of this Component.\n\n\nOptionally selects the next sibling which matches the passed ComponentQ..."
3134     },
3135     {
3136       "tagname": "method",
3137       "name": "observe",
3138       "member": "Ext.util.Observable",
3139       "doc": "<p>Sets observability on the passed class constructor.</p>\n\n<p>This makes any event fired on any instance of the passed class also fire a single event through\nthe <strong>class</strong> allowing for central handling of events on many instances at once.</p>\n\n<p>Usage:</p>\n\n<pre><code>Ext.util.Observable.observe(Ext.data.Connection);\nExt.data.Connection.on('beforerequest', function(con, options) {\n    console.log('Ajax request made to ' + options.url);\n});\n</code></pre>\n",
3140       "params": [
3141         {
3142           "type": "Function",
3143           "name": "c",
3144           "doc": "<p>The class constructor to make observable.</p>\n",
3145           "optional": false
3146         },
3147         {
3148           "type": "Object",
3149           "name": "listeners",
3150           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.form.FieldContainer-method-addListener\" rel=\"Ext.form.FieldContainer-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
3151           "optional": false
3152         }
3153       ],
3154       "return": {
3155         "type": "void",
3156         "doc": "\n"
3157       },
3158       "private": false,
3159       "static": true,
3160       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3161       "linenr": 69,
3162       "html_filename": "Observable.html",
3163       "href": "Observable.html#Ext-util-Observable-method-observe",
3164       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
3165     },
3166     {
3167       "tagname": "method",
3168       "name": "on",
3169       "member": "Ext.util.Observable",
3170       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.form.FieldContainer-method-addListener\" rel=\"Ext.form.FieldContainer-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
3171       "params": [
3172         {
3173           "type": "String",
3174           "name": "eventName",
3175           "doc": "<p>The type of event to listen for</p>\n",
3176           "optional": false
3177         },
3178         {
3179           "type": "Function",
3180           "name": "handler",
3181           "doc": "<p>The method the event invokes</p>\n",
3182           "optional": false
3183         },
3184         {
3185           "type": "Object",
3186           "name": "scope",
3187           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
3188           "optional": true
3189         },
3190         {
3191           "type": "Object",
3192           "name": "options",
3193           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
3194           "optional": true
3195         }
3196       ],
3197       "return": {
3198         "type": "void",
3199         "doc": "\n"
3200       },
3201       "private": false,
3202       "static": false,
3203       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3204       "linenr": 616,
3205       "html_filename": "Observable.html",
3206       "href": "Observable.html#Ext-util-Observable-method-on",
3207       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.form.FieldContainer-method-addListener\" rel=\"Ext.form.FieldContainer-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
3208     },
3209     {
3210       "tagname": "method",
3211       "name": "previousNode",
3212       "member": "Ext.AbstractComponent",
3213       "doc": "<p>Returns the previous node in the Component tree in tree traversal order.</p>\n\n\n<p>Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will\nwalk the tree in reverse order to attempt to find a match. Contrast with <a href=\"#/api/Ext.form.FieldContainer-method-previousSibling\" rel=\"Ext.form.FieldContainer-method-previousSibling\" class=\"docClass\">previousSibling</a>.</p>\n\n",
3214       "params": [
3215         {
3216           "type": "String",
3217           "name": "selector",
3218           "doc": "<p>Optional. A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the preceding nodes.</p>\n",
3219           "optional": false
3220         },
3221         {
3222           "type": "Object",
3223           "name": "includeSelf",
3224           "doc": "\n",
3225           "optional": false
3226         }
3227       ],
3228       "return": {
3229         "type": "void",
3230         "doc": "<p>The previous node (or the previous node which matches the selector). Returns null if there is no matching node.</p>\n"
3231       },
3232       "private": false,
3233       "static": false,
3234       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3235       "linenr": 1809,
3236       "html_filename": "AbstractComponent.html",
3237       "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousNode",
3238       "shortDoc": "Returns the previous node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings,..."
3239     },
3240     {
3241       "tagname": "method",
3242       "name": "previousSibling",
3243       "member": "Ext.AbstractComponent",
3244       "doc": "<p>Returns the previous sibling of this Component.</p>\n\n\n<p>Optionally selects the previous sibling which matches the passed <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector.</p>\n\n\n<p>May also be refered to as <code><b>prev()</b></code></p>\n\n\n<p>Note that this is limited to siblings, and if no siblings of the item match, <code>null</code> is returned. Contrast with <a href=\"#/api/Ext.form.FieldContainer-method-previousNode\" rel=\"Ext.form.FieldContainer-method-previousNode\" class=\"docClass\">previousNode</a></p>\n\n",
3245       "params": [
3246         {
3247           "type": "String",
3248           "name": "selector",
3249           "doc": "<p>Optional. A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the preceding items.</p>\n",
3250           "optional": false
3251         }
3252       ],
3253       "return": {
3254         "type": "void",
3255         "doc": "<p>The previous sibling (or the previous sibling which matches the selector). Returns null if there is no matching sibling.</p>\n"
3256       },
3257       "private": false,
3258       "static": false,
3259       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3260       "linenr": 1779,
3261       "html_filename": "AbstractComponent.html",
3262       "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousSibling",
3263       "shortDoc": "Returns the previous sibling of this Component.\n\n\nOptionally selects the previous sibling which matches the passed Co..."
3264     },
3265     {
3266       "tagname": "method",
3267       "name": "query",
3268       "member": "Ext.container.AbstractContainer",
3269       "doc": "<p>Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this container as its root.</p>\n",
3270       "params": [
3271         {
3272           "type": "String",
3273           "name": "selector",
3274           "doc": "<p>Selector complying to an <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector</p>\n",
3275           "optional": false
3276         }
3277       ],
3278       "return": {
3279         "type": "Array",
3280         "doc": "<p>Ext.Component's which matched the selector</p>\n"
3281       },
3282       "private": false,
3283       "static": false,
3284       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3285       "linenr": 772,
3286       "html_filename": "AbstractContainer.html",
3287       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-query",
3288       "shortDoc": "Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this ..."
3289     },
3290     {
3291       "tagname": "method",
3292       "name": "relayEvents",
3293       "member": "Ext.util.Observable",
3294       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
3295       "params": [
3296         {
3297           "type": "Object",
3298           "name": "origin",
3299           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
3300           "optional": false
3301         },
3302         {
3303           "type": "Array",
3304           "name": "events",
3305           "doc": "<p>Array of event names to relay.</p>\n",
3306           "optional": false
3307         },
3308         {
3309           "type": "Object",
3310           "name": "prefix",
3311           "doc": "\n",
3312           "optional": false
3313         }
3314       ],
3315       "return": {
3316         "type": "void",
3317         "doc": "\n"
3318       },
3319       "private": false,
3320       "static": false,
3321       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3322       "linenr": 520,
3323       "html_filename": "Observable.html",
3324       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
3325       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
3326     },
3327     {
3328       "tagname": "method",
3329       "name": "releaseCapture",
3330       "member": "Ext.util.Observable",
3331       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
3332       "params": [
3333         {
3334           "type": "Observable",
3335           "name": "o",
3336           "doc": "<p>The Observable to release</p>\n",
3337           "optional": false
3338         }
3339       ],
3340       "return": {
3341         "type": "void",
3342         "doc": "\n"
3343       },
3344       "private": false,
3345       "static": true,
3346       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3347       "linenr": 46,
3348       "html_filename": "Observable.html",
3349       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
3350       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
3351     },
3352     {
3353       "tagname": "method",
3354       "name": "remove",
3355       "member": "Ext.container.AbstractContainer",
3356       "doc": "<p>Removes a component from this container.  Fires the <a href=\"#/api/Ext.form.FieldContainer-event-beforeremove\" rel=\"Ext.form.FieldContainer-event-beforeremove\" class=\"docClass\">beforeremove</a> event before removing, then fires\nthe <a href=\"#/api/Ext.form.FieldContainer-event-remove\" rel=\"Ext.form.FieldContainer-event-remove\" class=\"docClass\">remove</a> event after the component has been removed.</p>\n",
3357       "params": [
3358         {
3359           "type": "Component/String",
3360           "name": "component",
3361           "doc": "<p>The component reference or id to remove.</p>\n",
3362           "optional": false
3363         },
3364         {
3365           "type": "Boolean",
3366           "name": "autoDestroy",
3367           "doc": "<p>(optional) True to automatically invoke the removed Component's <a href=\"#/api/Ext.Component-event-destroy\" rel=\"Ext.Component-event-destroy\" class=\"docClass\">Ext.Component.destroy</a> function.\nDefaults to the value of this Container's <a href=\"#/api/Ext.form.FieldContainer-cfg-autoDestroy\" rel=\"Ext.form.FieldContainer-cfg-autoDestroy\" class=\"docClass\">autoDestroy</a> config.</p>\n",
3368           "optional": true
3369         }
3370       ],
3371       "return": {
3372         "type": "Ext.Component",
3373         "doc": "<p>component The Component that was removed.</p>\n"
3374       },
3375       "private": false,
3376       "static": false,
3377       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3378       "linenr": 600,
3379       "html_filename": "AbstractContainer.html",
3380       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-remove",
3381       "shortDoc": "Removes a component from this container.  Fires the beforeremove event before removing, then fires\nthe remove event a..."
3382     },
3383     {
3384       "tagname": "method",
3385       "name": "removeAll",
3386       "member": "Ext.container.AbstractContainer",
3387       "doc": "<p>Removes all components from this container.</p>\n",
3388       "params": [
3389         {
3390           "type": "Boolean",
3391           "name": "autoDestroy",
3392           "doc": "<p>(optional) True to automatically invoke the removed Component's <a href=\"#/api/Ext.Component-event-destroy\" rel=\"Ext.Component-event-destroy\" class=\"docClass\">Ext.Component.destroy</a> function.\nDefaults to the value of this Container's <a href=\"#/api/Ext.form.FieldContainer-cfg-autoDestroy\" rel=\"Ext.form.FieldContainer-cfg-autoDestroy\" class=\"docClass\">autoDestroy</a> config.</p>\n",
3393           "optional": true
3394         }
3395       ],
3396       "return": {
3397         "type": "Array",
3398         "doc": "<p>Array of the destroyed components</p>\n"
3399       },
3400       "private": false,
3401       "static": false,
3402       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3403       "linenr": 653,
3404       "html_filename": "AbstractContainer.html",
3405       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-removeAll",
3406       "shortDoc": "<p>Removes all components from this container.</p>\n"
3407     },
3408     {
3409       "tagname": "method",
3410       "name": "removeCls",
3411       "member": "Ext.AbstractComponent",
3412       "doc": "<p>Removes a CSS class from the top level element representing this component.</p>\n",
3413       "params": [
3414         {
3415           "type": "Object",
3416           "name": "className",
3417           "doc": "\n",
3418           "optional": false
3419         }
3420       ],
3421       "return": {
3422         "type": "Ext.Component",
3423         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
3424       },
3425       "private": false,
3426       "static": false,
3427       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3428       "linenr": 2171,
3429       "html_filename": "AbstractComponent.html",
3430       "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeCls",
3431       "shortDoc": "<p>Removes a CSS class from the top level element representing this component.</p>\n"
3432     },
3433     {
3434       "tagname": "method",
3435       "name": "removeClsWithUI",
3436       "member": "Ext.AbstractComponent",
3437       "doc": "<p>Removes a cls to the uiCls array, which will also call <a href=\"#/api/Ext.form.FieldContainer--removeUIClsToElement\" rel=\"Ext.form.FieldContainer--removeUIClsToElement\" class=\"docClass\">removeUIClsToElement</a> and removes\nit from all elements of this component.</p>\n",
3438       "params": [
3439         {
3440           "type": "String/Array",
3441           "name": "cls",
3442           "doc": "<p>A string or an array of strings to remove to the uiCls</p>\n",
3443           "optional": false
3444         }
3445       ],
3446       "return": {
3447         "type": "void",
3448         "doc": "\n"
3449       },
3450       "private": false,
3451       "static": false,
3452       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3453       "linenr": 1368,
3454       "html_filename": "AbstractComponent.html",
3455       "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeClsWithUI",
3456       "shortDoc": "Removes a cls to the uiCls array, which will also call removeUIClsToElement and removes\nit from all elements of this ..."
3457     },
3458     {
3459       "tagname": "method",
3460       "name": "removeListener",
3461       "member": "Ext.util.Observable",
3462       "doc": "<p>Removes an event handler.</p>\n",
3463       "params": [
3464         {
3465           "type": "String",
3466           "name": "eventName",
3467           "doc": "<p>The type of event the handler was associated with.</p>\n",
3468           "optional": false
3469         },
3470         {
3471           "type": "Function",
3472           "name": "handler",
3473           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.form.FieldContainer-method-addListener\" rel=\"Ext.form.FieldContainer-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
3474           "optional": false
3475         },
3476         {
3477           "type": "Object",
3478           "name": "scope",
3479           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
3480           "optional": true
3481         }
3482       ],
3483       "return": {
3484         "type": "void",
3485         "doc": "\n"
3486       },
3487       "private": false,
3488       "static": false,
3489       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3490       "linenr": 352,
3491       "html_filename": "Observable.html",
3492       "href": "Observable.html#Ext-util-Observable-method-removeListener",
3493       "shortDoc": "<p>Removes an event handler.</p>\n"
3494     },
3495     {
3496       "tagname": "method",
3497       "name": "removeManagedListener",
3498       "member": "Ext.util.Observable",
3499       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.form.FieldContainer--mon\" rel=\"Ext.form.FieldContainer--mon\" class=\"docClass\">mon</a> method.</p>\n",
3500       "params": [
3501         {
3502           "type": "Observable|Element",
3503           "name": "item",
3504           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
3505           "optional": false
3506         },
3507         {
3508           "type": "Object|String",
3509           "name": "ename",
3510           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
3511           "optional": false
3512         },
3513         {
3514           "type": "Function",
3515           "name": "fn",
3516           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
3517           "optional": false
3518         },
3519         {
3520           "type": "Object",
3521           "name": "scope",
3522           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
3523           "optional": false
3524         }
3525       ],
3526       "return": {
3527         "type": "void",
3528         "doc": "\n"
3529       },
3530       "private": false,
3531       "static": false,
3532       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3533       "linenr": 196,
3534       "html_filename": "Observable.html",
3535       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
3536       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.form.FieldContainer--mon\" rel=\"Ext.form.FieldContainer--mon\" class=\"docClass\">mon</a> method.</p>\n"
3537     },
3538     {
3539       "tagname": "method",
3540       "name": "resumeEvents",
3541       "member": "Ext.util.Observable",
3542       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.form.FieldContainer-method-suspendEvents\" rel=\"Ext.form.FieldContainer-method-suspendEvents\" class=\"docClass\">suspendEvents</a>)\nIf events were suspended using the <code><b>queueSuspended</b></code> parameter, then all\nevents fired during event suspension will be sent to any listeners now.</p>\n",
3543       "params": [
3544
3545       ],
3546       "return": {
3547         "type": "void",
3548         "doc": "\n"
3549       },
3550       "private": false,
3551       "static": false,
3552       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3553       "linenr": 502,
3554       "html_filename": "Observable.html",
3555       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
3556       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
3557     },
3558     {
3559       "tagname": "method",
3560       "name": "sequenceFx",
3561       "member": "Ext.util.Animate",
3562       "doc": "<p>Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite of <a href=\"#/api/Ext.form.FieldContainer-method-syncFx\" rel=\"Ext.form.FieldContainer-method-syncFx\" class=\"docClass\">syncFx</a>.</p>\n",
3563       "params": [
3564
3565       ],
3566       "return": {
3567         "type": "Object",
3568         "doc": "<p>this</p>\n"
3569       },
3570       "private": false,
3571       "static": false,
3572       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
3573       "linenr": 357,
3574       "html_filename": "Animate.html",
3575       "href": "Animate.html#Ext-util-Animate-method-sequenceFx",
3576       "shortDoc": "Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite ..."
3577     },
3578     {
3579       "tagname": "method",
3580       "name": "setActive",
3581       "member": "Ext.util.Floating",
3582       "doc": "<p>This method is called internally by <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">Ext.ZIndexManager</a> to signal that a floating\nComponent has either been moved to the top of its zIndex stack, or pushed from the top of its zIndex stack.</p>\n\n\n<p>If a <i>Window</i> is superceded by another Window, deactivating it hides its shadow.</p>\n\n\n<p>This method also fires the <a href=\"#/api/Ext.form.FieldContainer-event-activate\" rel=\"Ext.form.FieldContainer-event-activate\" class=\"docClass\">activate</a> or <a href=\"#/api/Ext.form.FieldContainer-event-deactivate\" rel=\"Ext.form.FieldContainer-event-deactivate\" class=\"docClass\">deactivate</a> event depending on which action occurred.</p>\n\n",
3583       "params": [
3584         {
3585           "type": "Boolean",
3586           "name": "active",
3587           "doc": "<p>True to activate the Component, false to deactivate it (defaults to false)</p>\n",
3588           "optional": false
3589         },
3590         {
3591           "type": "Component",
3592           "name": "newActive",
3593           "doc": "<p>The newly active Component which is taking over topmost zIndex position.</p>\n",
3594           "optional": false
3595         }
3596       ],
3597       "return": {
3598         "type": "void",
3599         "doc": "\n"
3600       },
3601       "private": false,
3602       "static": false,
3603       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
3604       "linenr": 216,
3605       "html_filename": "Floating.html",
3606       "href": "Floating.html#Ext-util-Floating-method-setActive",
3607       "shortDoc": "This method is called internally by Ext.ZIndexManager to signal that a floating\nComponent has either been moved to th..."
3608     },
3609     {
3610       "tagname": "method",
3611       "name": "setActiveError",
3612       "member": "Ext.form.Labelable",
3613       "doc": "<p>Sets the active error message to the given string. This replaces the entire error message\ncontents with the given string. Also see <a href=\"#/api/Ext.form.FieldContainer-method-setActiveErrors\" rel=\"Ext.form.FieldContainer-method-setActiveErrors\" class=\"docClass\">setActiveErrors</a> which accepts an Array of\nmessages and formats them according to the <a href=\"#/api/Ext.form.FieldContainer-cfg-activeErrorsTpl\" rel=\"Ext.form.FieldContainer-cfg-activeErrorsTpl\" class=\"docClass\">activeErrorsTpl</a>.</p>\n",
3614       "params": [
3615         {
3616           "type": "String",
3617           "name": "msg",
3618           "doc": "<p>The error message</p>\n",
3619           "optional": false
3620         }
3621       ],
3622       "return": {
3623         "type": "void",
3624         "doc": "\n"
3625       },
3626       "private": false,
3627       "static": false,
3628       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
3629       "linenr": 348,
3630       "html_filename": "Labelable.html",
3631       "href": "Labelable.html#Ext-form-Labelable-method-setActiveError",
3632       "shortDoc": "Sets the active error message to the given string. This replaces the entire error message\ncontents with the given str..."
3633     },
3634     {
3635       "tagname": "method",
3636       "name": "setActiveErrors",
3637       "member": "Ext.form.Labelable",
3638       "doc": "<p>Set the active error message to an Array of error messages. The messages are formatted into\na single message string using the <a href=\"#/api/Ext.form.FieldContainer-cfg-activeErrorsTpl\" rel=\"Ext.form.FieldContainer-cfg-activeErrorsTpl\" class=\"docClass\">activeErrorsTpl</a>. Also see <a href=\"#/api/Ext.form.FieldContainer-method-setActiveError\" rel=\"Ext.form.FieldContainer-method-setActiveError\" class=\"docClass\">setActiveError</a>\nwhich allows setting the entire error contents with a single string.</p>\n",
3639       "params": [
3640         {
3641           "type": "Array",
3642           "name": "errors",
3643           "doc": "<p>The error messages</p>\n",
3644           "optional": false
3645         }
3646       ],
3647       "return": {
3648         "type": "void",
3649         "doc": "\n"
3650       },
3651       "private": false,
3652       "static": false,
3653       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
3654       "linenr": 369,
3655       "html_filename": "Labelable.html",
3656       "href": "Labelable.html#Ext-form-Labelable-method-setActiveErrors",
3657       "shortDoc": "Set the active error message to an Array of error messages. The messages are formatted into\na single message string u..."
3658     },
3659     {
3660       "tagname": "method",
3661       "name": "setAutoScroll",
3662       "member": "Ext.Component",
3663       "doc": "<p>Sets the overflow on the content element of the component.</p>\n",
3664       "params": [
3665         {
3666           "type": "Boolean",
3667           "name": "scroll",
3668           "doc": "<p>True to allow the Component to auto scroll.</p>\n",
3669           "optional": false
3670         }
3671       ],
3672       "return": {
3673         "type": "Ext.Component",
3674         "doc": "<p>this</p>\n"
3675       },
3676       "private": false,
3677       "static": false,
3678       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3679       "linenr": 359,
3680       "html_filename": "Component.html",
3681       "href": "Component.html#Ext-Component-method-setAutoScroll",
3682       "shortDoc": "<p>Sets the overflow on the content element of the component.</p>\n"
3683     },
3684     {
3685       "tagname": "method",
3686       "name": "setDisabled",
3687       "member": "Ext.AbstractComponent",
3688       "doc": "<p>Enable or disable the component.</p>\n",
3689       "params": [
3690         {
3691           "type": "Boolean",
3692           "name": "disabled",
3693           "doc": "\n",
3694           "optional": false
3695         }
3696       ],
3697       "return": {
3698         "type": "void",
3699         "doc": "\n"
3700       },
3701       "private": false,
3702       "static": false,
3703       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3704       "linenr": 2123,
3705       "html_filename": "AbstractComponent.html",
3706       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDisabled",
3707       "shortDoc": "<p>Enable or disable the component.</p>\n"
3708     },
3709     {
3710       "tagname": "method",
3711       "name": "setDocked",
3712       "member": "Ext.AbstractComponent",
3713       "doc": "<p>Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of the dockedItems collection\nof a parent that has a DockLayout (note that any Panel has a DockLayout\nby default)</p>\n",
3714       "params": [
3715         {
3716           "type": "Object",
3717           "name": "dock",
3718           "doc": "\n",
3719           "optional": false
3720         },
3721         {
3722           "type": "Object",
3723           "name": "layoutParent",
3724           "doc": "\n",
3725           "optional": false
3726         }
3727       ],
3728       "return": {
3729         "type": "Component",
3730         "doc": "<p>this</p>\n"
3731       },
3732       "private": false,
3733       "static": false,
3734       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3735       "linenr": 2646,
3736       "html_filename": "AbstractComponent.html",
3737       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDocked",
3738       "shortDoc": "Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of ..."
3739     },
3740     {
3741       "tagname": "method",
3742       "name": "setFieldDefaults",
3743       "member": "Ext.form.Labelable",
3744       "doc": "<p>Applies a set of default configuration values to this Labelable instance. For each of the\nproperties in the given object, check if this component hasOwnProperty that config; if not\nthen it's inheriting a default value from its prototype and we should apply the default value.</p>\n",
3745       "params": [
3746         {
3747           "type": "Object",
3748           "name": "defaults",
3749           "doc": "<p>The defaults to apply to the object.</p>\n",
3750           "optional": false
3751         }
3752       ],
3753       "return": {
3754         "type": "void",
3755         "doc": "\n"
3756       },
3757       "private": false,
3758       "static": false,
3759       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
3760       "linenr": 417,
3761       "html_filename": "Labelable.html",
3762       "href": "Labelable.html#Ext-form-Labelable-method-setFieldDefaults",
3763       "shortDoc": "Applies a set of default configuration values to this Labelable instance. For each of the\nproperties in the given obj..."
3764     },
3765     {
3766       "tagname": "method",
3767       "name": "setHeight",
3768       "member": "Ext.AbstractComponent",
3769       "doc": "<p>Sets the height of the component.  This method fires the <a href=\"#/api/Ext.form.FieldContainer-event-resize\" rel=\"Ext.form.FieldContainer-event-resize\" class=\"docClass\">resize</a> event.</p>\n",
3770       "params": [
3771         {
3772           "type": "Number",
3773           "name": "height",
3774           "doc": "<p>The new height to set. This may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new height in the <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS height style.</li>\n<li><i>undefined</i> to leave the height unchanged.</li>\n</ul></div></p>\n",
3775           "optional": false
3776         }
3777       ],
3778       "return": {
3779         "type": "Ext.Component",
3780         "doc": "<p>this</p>\n"
3781       },
3782       "private": false,
3783       "static": false,
3784       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3785       "linenr": 2550,
3786       "html_filename": "AbstractComponent.html",
3787       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setHeight",
3788       "shortDoc": "<p>Sets the height of the component.  This method fires the <a href=\"#/api/Ext.form.FieldContainer-event-resize\" rel=\"Ext.form.FieldContainer-event-resize\" class=\"docClass\">resize</a> event.</p>\n"
3789     },
3790     {
3791       "tagname": "method",
3792       "name": "setLoading",
3793       "member": "Ext.AbstractComponent",
3794       "doc": "<p>This method allows you to show or hide a LoadMask on top of this component.</p>\n",
3795       "params": [
3796         {
3797           "type": "Boolean/Object/String",
3798           "name": "load",
3799           "doc": "<p>True to show the default LoadMask, a config object\nthat will be passed to the LoadMask constructor, or a message String to show. False to\nhide the current LoadMask.</p>\n",
3800           "optional": false
3801         },
3802         {
3803           "type": "Boolean",
3804           "name": "targetEl",
3805           "doc": "<p>True to mask the targetEl of this Component instead of the this.el.\nFor example, setting this to true on a Panel will cause only the body to be masked. (defaults to false)</p>\n",
3806           "optional": false
3807         }
3808       ],
3809       "return": {
3810         "type": "Ext.LoadMask",
3811         "doc": "<p>The LoadMask instance that has just been shown.</p>\n"
3812       },
3813       "private": false,
3814       "static": false,
3815       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3816       "linenr": 2611,
3817       "html_filename": "AbstractComponent.html",
3818       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setLoading",
3819       "shortDoc": "<p>This method allows you to show or hide a LoadMask on top of this component.</p>\n"
3820     },
3821     {
3822       "tagname": "method",
3823       "name": "setPagePosition",
3824       "member": "Ext.Component",
3825       "doc": "<p>Sets the page XY position of the component.  To set the left and top instead, use <a href=\"#/api/Ext.form.FieldContainer-method-setPosition\" rel=\"Ext.form.FieldContainer-method-setPosition\" class=\"docClass\">setPosition</a>.\nThis method fires the <a href=\"#/api/Ext.form.FieldContainer-event-move\" rel=\"Ext.form.FieldContainer-event-move\" class=\"docClass\">move</a> event.</p>\n",
3826       "params": [
3827         {
3828           "type": "Number",
3829           "name": "x",
3830           "doc": "<p>The new x position</p>\n",
3831           "optional": false
3832         },
3833         {
3834           "type": "Number",
3835           "name": "y",
3836           "doc": "<p>The new y position</p>\n",
3837           "optional": false
3838         },
3839         {
3840           "type": "Mixed",
3841           "name": "animate",
3842           "doc": "<p>If passed, the Component is <i>animated</i> into its new position. If this parameter\nis a number, it is used as the animation duration in milliseconds.</p>\n",
3843           "optional": false
3844         }
3845       ],
3846       "return": {
3847         "type": "Ext.Component",
3848         "doc": "<p>this</p>\n"
3849       },
3850       "private": false,
3851       "static": false,
3852       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3853       "linenr": 501,
3854       "html_filename": "Component.html",
3855       "href": "Component.html#Ext-Component-method-setPagePosition",
3856       "shortDoc": "Sets the page XY position of the component.  To set the left and top instead, use setPosition.\nThis method fires the ..."
3857     },
3858     {
3859       "tagname": "method",
3860       "name": "setPosition",
3861       "member": "Ext.Component",
3862       "doc": "<p>Sets the left and top of the component.  To set the page XY position instead, use <a href=\"#/api/Ext.form.FieldContainer-method-setPagePosition\" rel=\"Ext.form.FieldContainer-method-setPagePosition\" class=\"docClass\">setPagePosition</a>.\nThis method fires the <a href=\"#/api/Ext.form.FieldContainer-event-move\" rel=\"Ext.form.FieldContainer-event-move\" class=\"docClass\">move</a> event.</p>\n",
3863       "params": [
3864         {
3865           "type": "Number",
3866           "name": "left",
3867           "doc": "<p>The new left</p>\n",
3868           "optional": false
3869         },
3870         {
3871           "type": "Number",
3872           "name": "top",
3873           "doc": "<p>The new top</p>\n",
3874           "optional": false
3875         },
3876         {
3877           "type": "Mixed",
3878           "name": "animate",
3879           "doc": "<p>If true, the Component is <i>animated</i> into its new position. You may also pass an animation configuration.</p>\n",
3880           "optional": false
3881         }
3882       ],
3883       "return": {
3884         "type": "Ext.Component",
3885         "doc": "<p>this</p>\n"
3886       },
3887       "private": false,
3888       "static": false,
3889       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3890       "linenr": 417,
3891       "html_filename": "Component.html",
3892       "href": "Component.html#Ext-Component-method-setPosition",
3893       "shortDoc": "Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.\nThis method fires ..."
3894     },
3895     {
3896       "tagname": "method",
3897       "name": "setSize",
3898       "member": "Ext.AbstractComponent",
3899       "doc": "<p>Sets the width and height of this Component. This method fires the <a href=\"#/api/Ext.form.FieldContainer-event-resize\" rel=\"Ext.form.FieldContainer-event-resize\" class=\"docClass\">resize</a> event. This method can accept\neither width and height as separate arguments, or you can pass a size object like <code>{width:10, height:20}</code>.</p>\n",
3900       "params": [
3901         {
3902           "type": "Mixed",
3903           "name": "width",
3904           "doc": "<p>The new width to set. This may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new width in the <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS width style.</li>\n<li>A size object in the format <code>{width: widthValue, height: heightValue}</code>.</li>\n<li><code>undefined</code> to leave the width unchanged.</li>\n</ul></div></p>\n",
3905           "optional": false
3906         },
3907         {
3908           "type": "Mixed",
3909           "name": "height",
3910           "doc": "<p>The new height to set (not required if a size object is passed as the first arg).\nThis may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new height in the <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS height style. Animation may <b>not</b> be used.</li>\n<li><code>undefined</code> to leave the height unchanged.</li>\n</ul></div></p>\n",
3911           "optional": false
3912         }
3913       ],
3914       "return": {
3915         "type": "Ext.Component",
3916         "doc": "<p>this</p>\n"
3917       },
3918       "private": false,
3919       "static": false,
3920       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3921       "linenr": 2340,
3922       "html_filename": "AbstractComponent.html",
3923       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setSize",
3924       "shortDoc": "Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width ..."
3925     },
3926     {
3927       "tagname": "method",
3928       "name": "setUI",
3929       "member": "Ext.AbstractComponent",
3930       "doc": "<p>Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCls set on the component and rename them so they include the new UI</p>\n",
3931       "params": [
3932         {
3933           "type": "String",
3934           "name": "ui",
3935           "doc": "<p>The new UI for the component</p>\n",
3936           "optional": false
3937         }
3938       ],
3939       "return": {
3940         "type": "void",
3941         "doc": "\n"
3942       },
3943       "private": false,
3944       "static": false,
3945       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3946       "linenr": 1309,
3947       "html_filename": "AbstractComponent.html",
3948       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setUI",
3949       "shortDoc": "Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCl..."
3950     },
3951     {
3952       "tagname": "method",
3953       "name": "setVisible",
3954       "member": "Ext.AbstractComponent",
3955       "doc": "<p>Convenience function to hide or show this component by boolean.</p>\n",
3956       "params": [
3957         {
3958           "type": "Boolean",
3959           "name": "visible",
3960           "doc": "<p>True to show, false to hide</p>\n",
3961           "optional": false
3962         }
3963       ],
3964       "return": {
3965         "type": "Ext.Component",
3966         "doc": "<p>this</p>\n"
3967       },
3968       "private": false,
3969       "static": false,
3970       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3971       "linenr": 2006,
3972       "html_filename": "AbstractComponent.html",
3973       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setVisible",
3974       "shortDoc": "<p>Convenience function to hide or show this component by boolean.</p>\n"
3975     },
3976     {
3977       "tagname": "method",
3978       "name": "setWidth",
3979       "member": "Ext.AbstractComponent",
3980       "doc": "<p>Sets the width of the component.  This method fires the <a href=\"#/api/Ext.form.FieldContainer-event-resize\" rel=\"Ext.form.FieldContainer-event-resize\" class=\"docClass\">resize</a> event.</p>\n",
3981       "params": [
3982         {
3983           "type": "Number",
3984           "name": "width",
3985           "doc": "<p>The new width to setThis may be one of:<div class=\"mdetail-params\"><ul>\n<li>A Number specifying the new width in the <a href=\"#/api/Ext.form.FieldContainer-method-getEl\" rel=\"Ext.form.FieldContainer-method-getEl\" class=\"docClass\">Element</a>'s <a href=\"#/api/Ext.core.Element-property-defaultUnit\" rel=\"Ext.core.Element-property-defaultUnit\" class=\"docClass\">Ext.core.Element.defaultUnit</a>s (by default, pixels).</li>\n<li>A String used to set the CSS width style.</li>\n</ul></div></p>\n",
3986           "optional": false
3987         }
3988       ],
3989       "return": {
3990         "type": "Ext.Component",
3991         "doc": "<p>this</p>\n"
3992       },
3993       "private": false,
3994       "static": false,
3995       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3996       "linenr": 2538,
3997       "html_filename": "AbstractComponent.html",
3998       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setWidth",
3999       "shortDoc": "<p>Sets the width of the component.  This method fires the <a href=\"#/api/Ext.form.FieldContainer-event-resize\" rel=\"Ext.form.FieldContainer-event-resize\" class=\"docClass\">resize</a> event.</p>\n"
4000     },
4001     {
4002       "tagname": "method",
4003       "name": "show",
4004       "member": "Ext.Component",
4005       "doc": "<p>Shows this Component, rendering it first if <a href=\"#/api/Ext.form.FieldContainer-cfg-autoRender\" rel=\"Ext.form.FieldContainer-cfg-autoRender\" class=\"docClass\">autoRender</a> or {<a href=\"#/api/\"floating\" rel=\"\"floating\" class=\"docClass\">&quot;floating</a> are <code>true</code>.</p>\n\n\n<p>After being shown, a <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Component (such as a <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Ext.window.Window</a>), is activated it and brought to the front of\nits <a href=\"#/api/Ext.form.FieldContainer--ZIndexManager\" rel=\"Ext.form.FieldContainer--ZIndexManager\" class=\"docClass\">z-index stack</a>.</p>\n\n",
4006       "params": [
4007         {
4008           "type": "String/Element",
4009           "name": "animateTarget",
4010           "doc": "<p>Optional, and <b>only valid for <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components such as\n<a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s or <a href=\"#/api/Ext.tip.ToolTip\" rel=\"Ext.tip.ToolTip\" class=\"docClass\">ToolTip</a>s, or regular Components which have been configured\nwith <code>floating: true</code>.</b> The target from which the Component should\nanimate from while opening (defaults to null with no animation)</p>\n",
4011           "optional": false
4012         },
4013         {
4014           "type": "Function",
4015           "name": "callback",
4016           "doc": "<p>(optional) A callback function to call after the Component is displayed. Only necessary if animation was specified.</p>\n",
4017           "optional": true
4018         },
4019         {
4020           "type": "Object",
4021           "name": "scope",
4022           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Component.</p>\n",
4023           "optional": true
4024         }
4025       ],
4026       "return": {
4027         "type": "Component",
4028         "doc": "<p>this</p>\n"
4029       },
4030       "private": false,
4031       "static": false,
4032       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4033       "linenr": 645,
4034       "html_filename": "Component.html",
4035       "href": "Component.html#Ext-Component-method-show",
4036       "shortDoc": "Shows this Component, rendering it first if autoRender or {&quot;floating are true.\n\n\nAfter being shown, a floating C..."
4037     },
4038     {
4039       "tagname": "method",
4040       "name": "stopAnimation",
4041       "member": "Ext.util.Animate",
4042       "doc": "<p>Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.</p>\n",
4043       "params": [
4044
4045       ],
4046       "return": {
4047         "type": "Ext.core.Element",
4048         "doc": "<p>The Element</p>\n"
4049       },
4050       "private": false,
4051       "static": false,
4052       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4053       "linenr": 335,
4054       "html_filename": "Animate.html",
4055       "href": "Animate.html#Ext-util-Animate-method-stopAnimation",
4056       "shortDoc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ..."
4057     },
4058     {
4059       "tagname": "method",
4060       "name": "stopFx",
4061       "member": "Ext.util.Animate",
4062       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.form.FieldContainer-method-stopAnimation\" rel=\"Ext.form.FieldContainer-method-stopAnimation\" class=\"docClass\">stopAnimation</a>\nStops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.</p>\n",
4063       "params": [
4064
4065       ],
4066       "return": {
4067         "type": "Ext.core.Element",
4068         "doc": "<p>The Element</p>\n"
4069       },
4070       "private": false,
4071       "static": false,
4072       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4073       "linenr": 326,
4074       "html_filename": "Animate.html",
4075       "href": "Animate.html#Ext-util-Animate-method-stopFx",
4076       "shortDoc": "@deprecated 4.0 Replaced by stopAnimation\nStops any running effects and clears this object's internal effects queue i..."
4077     },
4078     {
4079       "tagname": "method",
4080       "name": "suspendEvents",
4081       "member": "Ext.util.Observable",
4082       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.form.FieldContainer-method-resumeEvents\" rel=\"Ext.form.FieldContainer-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
4083       "params": [
4084         {
4085           "type": "Boolean",
4086           "name": "queueSuspended",
4087           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.form.FieldContainer-method-resumeEvents\" rel=\"Ext.form.FieldContainer-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
4088           "optional": false
4089         }
4090       ],
4091       "return": {
4092         "type": "void",
4093         "doc": "\n"
4094       },
4095       "private": false,
4096       "static": false,
4097       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
4098       "linenr": 490,
4099       "html_filename": "Observable.html",
4100       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
4101       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.form.FieldContainer-method-resumeEvents\" rel=\"Ext.form.FieldContainer-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
4102     },
4103     {
4104       "tagname": "method",
4105       "name": "syncFx",
4106       "member": "Ext.util.Animate",
4107       "doc": "<p>Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of <a href=\"#/api/Ext.form.FieldContainer-method-sequenceFx\" rel=\"Ext.form.FieldContainer-method-sequenceFx\" class=\"docClass\">sequenceFx</a>.</p>\n",
4108       "params": [
4109
4110       ],
4111       "return": {
4112         "type": "Object",
4113         "doc": "<p>this</p>\n"
4114       },
4115       "private": false,
4116       "static": false,
4117       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4118       "linenr": 345,
4119       "html_filename": "Animate.html",
4120       "href": "Animate.html#Ext-util-Animate-method-syncFx",
4121       "shortDoc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of ..."
4122     },
4123     {
4124       "tagname": "method",
4125       "name": "toBack",
4126       "member": "Ext.util.Floating",
4127       "doc": "<p>Sends this Component to the back of (lower z-index than) any other visible windows</p>\n",
4128       "params": [
4129
4130       ],
4131       "return": {
4132         "type": "Component",
4133         "doc": "<p>this</p>\n"
4134       },
4135       "private": false,
4136       "static": false,
4137       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
4138       "linenr": 240,
4139       "html_filename": "Floating.html",
4140       "href": "Floating.html#Ext-util-Floating-method-toBack",
4141       "shortDoc": "<p>Sends this Component to the back of (lower z-index than) any other visible windows</p>\n"
4142     },
4143     {
4144       "tagname": "method",
4145       "name": "toFront",
4146       "member": "Ext.util.Floating",
4147       "doc": "<p>Brings this floating Component to the front of any other visible, floating Components managed by the same <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a></p>\n\n\n<p>If this Component is modal, inserts the modal mask just below this Component in the z-index stack.</p>\n\n",
4148       "params": [
4149         {
4150           "type": "Boolean",
4151           "name": "preventFocus",
4152           "doc": "<p>(optional) Specify <code>true</code> to prevent the Component from being focused.</p>\n",
4153           "optional": true
4154         }
4155       ],
4156       "return": {
4157         "type": "Component",
4158         "doc": "<p>this</p>\n"
4159       },
4160       "private": false,
4161       "static": false,
4162       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
4163       "linenr": 188,
4164       "html_filename": "Floating.html",
4165       "href": "Floating.html#Ext-util-Floating-method-toFront",
4166       "shortDoc": "Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManag..."
4167     },
4168     {
4169       "tagname": "method",
4170       "name": "un",
4171       "member": "Ext.util.Observable",
4172       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.form.FieldContainer-method-removeListener\" rel=\"Ext.form.FieldContainer-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
4173       "params": [
4174         {
4175           "type": "String",
4176           "name": "eventName",
4177           "doc": "<p>The type of event the handler was associated with.</p>\n",
4178           "optional": false
4179         },
4180         {
4181           "type": "Function",
4182           "name": "handler",
4183           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.form.FieldContainer-method-addListener\" rel=\"Ext.form.FieldContainer-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
4184           "optional": false
4185         },
4186         {
4187           "type": "Object",
4188           "name": "scope",
4189           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
4190           "optional": true
4191         }
4192       ],
4193       "return": {
4194         "type": "void",
4195         "doc": "\n"
4196       },
4197       "private": false,
4198       "static": false,
4199       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
4200       "linenr": 608,
4201       "html_filename": "Observable.html",
4202       "href": "Observable.html#Ext-util-Observable-method-un",
4203       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.form.FieldContainer-method-removeListener\" rel=\"Ext.form.FieldContainer-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
4204     },
4205     {
4206       "tagname": "method",
4207       "name": "unsetActiveError",
4208       "member": "Ext.form.Labelable",
4209       "doc": "<p>Clears the active error.</p>\n",
4210       "params": [
4211
4212       ],
4213       "return": {
4214         "type": "void",
4215         "doc": "\n"
4216       },
4217       "private": false,
4218       "static": false,
4219       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
4220       "linenr": 381,
4221       "html_filename": "Labelable.html",
4222       "href": "Labelable.html#Ext-form-Labelable-method-unsetActiveError",
4223       "shortDoc": "<p>Clears the active error.</p>\n"
4224     },
4225     {
4226       "tagname": "method",
4227       "name": "up",
4228       "member": "Ext.AbstractComponent",
4229       "doc": "<p>Walks up the <code>ownerCt</code> axis looking for an ancestor Container which matches\nthe passed simple selector.</p>\n\n\n<p>Example:\n<pre><code>var owningTabPanel = grid.up('tabpanel');\n</code></pre>\n\n",
4230       "params": [
4231         {
4232           "type": "String",
4233           "name": "selector",
4234           "doc": "<p>Optional. The simple selector to test.</p>\n",
4235           "optional": false
4236         }
4237       ],
4238       "return": {
4239         "type": "Container",
4240         "doc": "<p>The matching ancestor Container (or <code>undefined</code> if no match was found).</p>\n"
4241       },
4242       "private": false,
4243       "static": false,
4244       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4245       "linenr": 1728,
4246       "html_filename": "AbstractComponent.html",
4247       "href": "AbstractComponent.html#Ext-AbstractComponent-method-up",
4248       "shortDoc": "Walks up the ownerCt axis looking for an ancestor Container which matches\nthe passed simple selector.\n\n\nExample:\nvar ..."
4249     },
4250     {
4251       "tagname": "method",
4252       "name": "update",
4253       "member": "Ext.AbstractComponent",
4254       "doc": "<p>Update the content area of a component.</p>\n",
4255       "params": [
4256         {
4257           "type": "Mixed",
4258           "name": "htmlOrData",
4259           "doc": "<p>If this component has been configured with a template via the tpl config\nthen it will use this argument as data to populate the template.\nIf this component was not configured with a template, the components\ncontent area will be updated via <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> update</p>\n",
4260           "optional": false
4261         },
4262         {
4263           "type": "Boolean",
4264           "name": "loadScripts",
4265           "doc": "<p>(optional) Only legitimate when using the html configuration. Defaults to false</p>\n",
4266           "optional": true
4267         },
4268         {
4269           "type": "Function",
4270           "name": "callback",
4271           "doc": "<p>(optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading</p>\n",
4272           "optional": true
4273         }
4274       ],
4275       "return": {
4276         "type": "void",
4277         "doc": "\n"
4278       },
4279       "private": false,
4280       "static": false,
4281       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4282       "linenr": 1974,
4283       "html_filename": "AbstractComponent.html",
4284       "href": "AbstractComponent.html#Ext-AbstractComponent-method-update",
4285       "shortDoc": "<p>Update the content area of a component.</p>\n"
4286     },
4287     {
4288       "tagname": "method",
4289       "name": "updateBox",
4290       "member": "Ext.Component",
4291       "doc": "<p>Sets the current box measurements of the component's underlying element.</p>\n",
4292       "params": [
4293         {
4294           "type": "Object",
4295           "name": "box",
4296           "doc": "<p>An object in the format {x, y, width, height}</p>\n",
4297           "optional": false
4298         }
4299       ],
4300       "return": {
4301         "type": "Ext.Component",
4302         "doc": "<p>this</p>\n"
4303       },
4304       "private": false,
4305       "static": false,
4306       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4307       "linenr": 551,
4308       "html_filename": "Component.html",
4309       "href": "Component.html#Ext-Component-method-updateBox",
4310       "shortDoc": "<p>Sets the current box measurements of the component's underlying element.</p>\n"
4311     }
4312   ],
4313   "property": [
4314     {
4315       "tagname": "property",
4316       "name": "bodyEl",
4317       "member": "Ext.form.Labelable",
4318       "type": "Ext.core.Element",
4319       "doc": "<p>The div Element wrapping the component's contents. Only available after the component has been rendered.</p>\n",
4320       "private": false,
4321       "static": false,
4322       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
4323       "linenr": 293,
4324       "html_filename": "Labelable.html",
4325       "href": "Labelable.html#Ext-form-Labelable-property-bodyEl"
4326     },
4327     {
4328       "tagname": "property",
4329       "name": "draggable",
4330       "member": "Ext.AbstractComponent",
4331       "type": "Boolean",
4332       "doc": "<p>Read-only property indicating whether or not the component can be dragged</p>\n",
4333       "private": false,
4334       "static": false,
4335       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4336       "linenr": 374,
4337       "html_filename": "AbstractComponent.html",
4338       "href": "AbstractComponent.html#Ext-AbstractComponent-property-draggable"
4339     },
4340     {
4341       "tagname": "property",
4342       "name": "errorEl",
4343       "member": "Ext.form.Labelable",
4344       "type": "Ext.core.Element",
4345       "doc": "<p>The div Element that will contain the component's error message(s). Note that depending on the\nconfigured <a href=\"#/api/Ext.form.FieldContainer-cfg-msgTarget\" rel=\"Ext.form.FieldContainer-cfg-msgTarget\" class=\"docClass\">msgTarget</a>, this element may be hidden in favor of some other form of\npresentation, but will always be present in the DOM for use by assistive technologies.</p>\n",
4346       "private": false,
4347       "static": false,
4348       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
4349       "linenr": 300,
4350       "html_filename": "Labelable.html",
4351       "href": "Labelable.html#Ext-form-Labelable-property-errorEl",
4352       "shortDoc": "The div Element that will contain the component's error message(s). Note that depending on the\nconfigured msgTarget, ..."
4353     },
4354     {
4355       "tagname": "property",
4356       "name": "floatParent",
4357       "member": "Ext.Component",
4358       "type": "Ext.Container",
4359       "doc": "<p>Optional. Only present for <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components which were inserted as descendant items of floating Containers.</p>\n\n\n<p>Floating Components that are programatically <a href=\"#/api/Ext.Component-event-render\" rel=\"Ext.Component-event-render\" class=\"docClass\">rendered</a> will not have a <code>floatParent</code> property.</p>\n\n\n<p>For <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components which are child items of a Container, the floatParent will be the floating ancestor Container which is\nresponsible for the base z-index value of all its floating descendants. It provides a <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a> which provides\nz-indexing services for all its descendant floating Components.</p>\n\n\n<p>For example, the dropdown <a href=\"#/api/Ext.view.BoundList\" rel=\"Ext.view.BoundList\" class=\"docClass\">BoundList</a> of a ComboBox which is in a Window will have the Window as its\n<code>floatParent</code></p>\n\n\n<p>See <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> and <a href=\"#/api/Ext.form.FieldContainer-property-zIndexManager\" rel=\"Ext.form.FieldContainer-property-zIndexManager\" class=\"docClass\">zIndexManager</a></p>\n\n",
4360       "private": false,
4361       "static": false,
4362       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4363       "linenr": 221,
4364       "html_filename": "Component.html",
4365       "href": "Component.html#Ext-Component-property-floatParent",
4366       "shortDoc": "Optional. Only present for floating Components which were inserted as descendant items of floating Containers.\n\n\nFloa..."
4367     },
4368     {
4369       "tagname": "property",
4370       "name": "frameSize",
4371       "member": "Ext.AbstractComponent",
4372       "type": "Object",
4373       "doc": "<p>Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto provide graphical, rounded borders. See the <a href=\"#/api/Ext.form.FieldContainer-cfg-frame\" rel=\"Ext.form.FieldContainer-cfg-frame\" class=\"docClass\">frame</a> config.</p>\n\n\n<p> This is an object containing the frame width in pixels for all four sides of the Component containing\nthe following properties:</p>\n\n\n<div class=\"mdetail-params\"><ul>\n<li><code>top</code> The width of the top framing element in pixels.</li>\n<li><code>right</code> The width of the right framing element in pixels.</li>\n<li><code>bottom</code> The width of the bottom framing element in pixels.</li>\n<li><code>left</code> The width of the left framing element in pixels.</li>\n</ul></div>\n\n",
4374       "private": false,
4375       "static": false,
4376       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4377       "linenr": 207,
4378       "html_filename": "AbstractComponent.html",
4379       "href": "AbstractComponent.html#Ext-AbstractComponent-property-frameSize",
4380       "shortDoc": "Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto ..."
4381     },
4382     {
4383       "tagname": "property",
4384       "name": "isFieldLabelable",
4385       "member": "Ext.form.Labelable",
4386       "type": "Boolean",
4387       "doc": "<p>Flag denoting that this object is labelable as a field. Always true.</p>\n",
4388       "private": false,
4389       "static": false,
4390       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
4391       "linenr": 61,
4392       "html_filename": "Labelable.html",
4393       "href": "Labelable.html#Ext-form-Labelable-property-isFieldLabelable"
4394     },
4395     {
4396       "tagname": "property",
4397       "name": "items",
4398       "member": "Ext.container.AbstractContainer",
4399       "type": "Ext.util.MixedCollection",
4400       "doc": "<p>The MixedCollection containing all the child items of this container.</p>\n",
4401       "private": false,
4402       "static": false,
4403       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4404       "linenr": 273,
4405       "html_filename": "AbstractContainer.html",
4406       "href": "AbstractContainer.html#Ext-container-AbstractContainer-property-items"
4407     },
4408     {
4409       "tagname": "property",
4410       "name": "labelEl",
4411       "member": "Ext.form.Labelable",
4412       "type": "Ext.core.Element",
4413       "doc": "<p>The label Element for this component. Only available after the component has been rendered.</p>\n",
4414       "private": false,
4415       "static": false,
4416       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
4417       "linenr": 286,
4418       "html_filename": "Labelable.html",
4419       "href": "Labelable.html#Ext-form-Labelable-property-labelEl"
4420     },
4421     {
4422       "tagname": "property",
4423       "name": "maskOnDisable",
4424       "member": "Ext.AbstractComponent",
4425       "type": "Boolean",
4426       "doc": "<p>This is an internal flag that you use when creating custom components.\nBy default this is set to true which means that every component gets a mask when its disabled.\nComponents like FieldContainer, FieldSet, Field, Button, Tab override this property to false\nsince they want to implement custom disable logic.</p>\n",
4427       "private": false,
4428       "static": false,
4429       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4430       "linenr": 513,
4431       "html_filename": "AbstractComponent.html",
4432       "href": "AbstractComponent.html#Ext-AbstractComponent-property-maskOnDisable",
4433       "shortDoc": "This is an internal flag that you use when creating custom components.\nBy default this is set to true which means tha..."
4434     },
4435     {
4436       "tagname": "property",
4437       "name": "ownerCt",
4438       "member": "Ext.AbstractComponent",
4439       "type": "Ext.Container",
4440       "doc": "<p>This Component's owner <a href=\"#/api/Ext.container.Container\" rel=\"Ext.container.Container\" class=\"docClass\">Container</a> (defaults to undefined, and is set automatically when\nthis Component is added to a Container).  Read-only.</p>\n\n<p><b>Note</b>: to access items within the Container see <tt><a href=\"#/api/Ext.form.FieldContainer-cfg-itemId\" rel=\"Ext.form.FieldContainer-cfg-itemId\" class=\"docClass\">itemId</a></tt>.</p>\n\n",
4441       "private": false,
4442       "static": false,
4443       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4444       "linenr": 101,
4445       "html_filename": "AbstractComponent.html",
4446       "href": "AbstractComponent.html#Ext-AbstractComponent-property-ownerCt",
4447       "shortDoc": "This Component's owner Container (defaults to undefined, and is set automatically when\nthis Component is added to a C..."
4448     },
4449     {
4450       "tagname": "property",
4451       "name": "rendered",
4452       "member": "Ext.AbstractComponent",
4453       "type": "Boolean",
4454       "doc": "<p>Read-only property indicating whether or not the component has been rendered.</p>\n",
4455       "private": false,
4456       "static": false,
4457       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4458       "linenr": 500,
4459       "html_filename": "AbstractComponent.html",
4460       "href": "AbstractComponent.html#Ext-AbstractComponent-property-rendered"
4461     },
4462     {
4463       "tagname": "property",
4464       "name": "zIndexManager",
4465       "member": "Ext.Component",
4466       "type": "Ext.ZIndexManager",
4467       "doc": "<p>Optional. Only present for <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components after they have been rendered.</p>\n\n\n<p>A reference to the ZIndexManager which is managing this Component's z-index.</p>\n\n\n<p>The <a href=\"#/api/Ext.ZIndexManager\" rel=\"Ext.ZIndexManager\" class=\"docClass\">ZIndexManager</a> maintains a stack of floating Component z-indices, and also provides a single modal\nmask which is insert just beneath the topmost visible modal floating Component.</p>\n\n\n<p>Floating Components may be <a href=\"#/api/Ext.form.FieldContainer-method-toFront\" rel=\"Ext.form.FieldContainer-method-toFront\" class=\"docClass\">brought to the front</a> or <a href=\"#/api/Ext.form.FieldContainer-method-toBack\" rel=\"Ext.form.FieldContainer-method-toBack\" class=\"docClass\">sent to the back</a> of the z-index stack.</p>\n\n\n<p>This defaults to the global <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a> for floating Components that are programatically\n<a href=\"#/api/Ext.Component-event-render\" rel=\"Ext.Component-event-render\" class=\"docClass\">rendered</a>.</p>\n\n\n<p>For <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> Components which are added to a Container, the ZIndexManager is acquired from the first ancestor Container found\nwhich is floating, or if not found the global <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">ZIndexManager</a> is used.</p>\n\n\n<p>See <a href=\"#/api/Ext.form.FieldContainer-cfg-floating\" rel=\"Ext.form.FieldContainer-cfg-floating\" class=\"docClass\">floating</a> and <a href=\"#/api/Ext.form.FieldContainer-property-floatParent\" rel=\"Ext.form.FieldContainer-property-floatParent\" class=\"docClass\">floatParent</a></p>\n\n",
4468       "private": false,
4469       "static": false,
4470       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4471       "linenr": 206,
4472       "html_filename": "Component.html",
4473       "href": "Component.html#Ext-Component-property-zIndexManager",
4474       "shortDoc": "Optional. Only present for floating Components after they have been rendered.\n\n\nA reference to the ZIndexManager whic..."
4475     }
4476   ],
4477   "event": [
4478     {
4479       "tagname": "event",
4480       "name": "activate",
4481       "member": "Ext.AbstractComponent",
4482       "doc": "<p>Fires after a Component has been visually activated.</p>\n",
4483       "params": [
4484         {
4485           "type": "Ext.Component",
4486           "name": "this",
4487           "doc": "\n",
4488           "optional": false
4489         }
4490       ],
4491       "private": false,
4492       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4493       "linenr": 540,
4494       "html_filename": "AbstractComponent.html",
4495       "href": "AbstractComponent.html#Ext-AbstractComponent-event-activate",
4496       "shortDoc": "<p>Fires after a Component has been visually activated.</p>\n"
4497     },
4498     {
4499       "tagname": "event",
4500       "name": "add",
4501       "member": "Ext.container.AbstractContainer",
4502       "doc": "<p>@bubbles\nFires after any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is added or inserted into the container.</p>\n",
4503       "params": [
4504         {
4505           "type": "Ext.container.Container",
4506           "name": "this",
4507           "doc": "\n",
4508           "optional": false
4509         },
4510         {
4511           "type": "Ext.Component",
4512           "name": "component",
4513           "doc": "<p>The component that was added</p>\n",
4514           "optional": false
4515         },
4516         {
4517           "type": "Number",
4518           "name": "index",
4519           "doc": "<p>The index at which the component was added to the container's items collection</p>\n",
4520           "optional": false
4521         }
4522       ],
4523       "private": false,
4524       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4525       "linenr": 215,
4526       "html_filename": "AbstractContainer.html",
4527       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-add",
4528       "shortDoc": "<p>@bubbles\nFires after any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is added or inserted into the container.</p>\n"
4529     },
4530     {
4531       "tagname": "event",
4532       "name": "added",
4533       "member": "Ext.AbstractComponent",
4534       "doc": "<p>Fires after a Component had been added to a Container.</p>\n",
4535       "params": [
4536         {
4537           "type": "Ext.Component",
4538           "name": "this",
4539           "doc": "\n",
4540           "optional": false
4541         },
4542         {
4543           "type": "Ext.container.Container",
4544           "name": "container",
4545           "doc": "<p>Parent Container</p>\n",
4546           "optional": false
4547         },
4548         {
4549           "type": "Number",
4550           "name": "pos",
4551           "doc": "<p>position of Component</p>\n",
4552           "optional": false
4553         }
4554       ],
4555       "private": false,
4556       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4557       "linenr": 560,
4558       "html_filename": "AbstractComponent.html",
4559       "href": "AbstractComponent.html#Ext-AbstractComponent-event-added",
4560       "shortDoc": "<p>Fires after a Component had been added to a Container.</p>\n"
4561     },
4562     {
4563       "tagname": "event",
4564       "name": "afterlayout",
4565       "member": "Ext.container.AbstractContainer",
4566       "doc": "<p>Fires when the components in this container are arranged by the associated layout manager.</p>\n",
4567       "params": [
4568         {
4569           "type": "Ext.container.Container",
4570           "name": "this",
4571           "doc": "\n",
4572           "optional": false
4573         },
4574         {
4575           "type": "ContainerLayout",
4576           "name": "layout",
4577           "doc": "<p>The ContainerLayout implementation for this container</p>\n",
4578           "optional": false
4579         }
4580       ],
4581       "private": false,
4582       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4583       "linenr": 191,
4584       "html_filename": "AbstractContainer.html",
4585       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-afterlayout",
4586       "shortDoc": "<p>Fires when the components in this container are arranged by the associated layout manager.</p>\n"
4587     },
4588     {
4589       "tagname": "event",
4590       "name": "afterrender",
4591       "member": "Ext.AbstractComponent",
4592       "doc": "<p>Fires after the component rendering is finished.</p>\n\n\n<p>The afterrender event is fired after this Component has been <a href=\"#/api/Ext.form.FieldContainer-property-rendered\" rel=\"Ext.form.FieldContainer-property-rendered\" class=\"docClass\">rendered</a>, been postprocesed\nby any afterRender method defined for the Component.</p>\n\n",
4593       "params": [
4594         {
4595           "type": "Ext.Component",
4596           "name": "this",
4597           "doc": "\n",
4598           "optional": false
4599         }
4600       ],
4601       "private": false,
4602       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4603       "linenr": 627,
4604       "html_filename": "AbstractComponent.html",
4605       "href": "AbstractComponent.html#Ext-AbstractComponent-event-afterrender",
4606       "shortDoc": "Fires after the component rendering is finished.\n\n\nThe afterrender event is fired after this Component has been rende..."
4607     },
4608     {
4609       "tagname": "event",
4610       "name": "beforeactivate",
4611       "member": "Ext.AbstractComponent",
4612       "doc": "<p>Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate\nfrom occurring.</p>\n",
4613       "params": [
4614         {
4615           "type": "Ext.Component",
4616           "name": "this",
4617           "doc": "\n",
4618           "optional": false
4619         }
4620       ],
4621       "private": false,
4622       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4623       "linenr": 532,
4624       "html_filename": "AbstractComponent.html",
4625       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeactivate",
4626       "shortDoc": "Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate..."
4627     },
4628     {
4629       "tagname": "event",
4630       "name": "beforeadd",
4631       "member": "Ext.container.AbstractContainer",
4632       "doc": "<p>Fires before any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is added or inserted into the container.\nA handler can return false to cancel the add.</p>\n",
4633       "params": [
4634         {
4635           "type": "Ext.container.Container",
4636           "name": "this",
4637           "doc": "\n",
4638           "optional": false
4639         },
4640         {
4641           "type": "Ext.Component",
4642           "name": "component",
4643           "doc": "<p>The component being added</p>\n",
4644           "optional": false
4645         },
4646         {
4647           "type": "Number",
4648           "name": "index",
4649           "doc": "<p>The index at which the component will be added to the container's items collection</p>\n",
4650           "optional": false
4651         }
4652       ],
4653       "private": false,
4654       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4655       "linenr": 198,
4656       "html_filename": "AbstractContainer.html",
4657       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforeadd",
4658       "shortDoc": "<p>Fires before any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is added or inserted into the container.\nA handler can return false to cancel the add.</p>\n"
4659     },
4660     {
4661       "tagname": "event",
4662       "name": "beforecardswitch",
4663       "member": "Ext.container.AbstractContainer",
4664       "doc": "<p>Fires before this container switches the active card. This event\nis only available if this container uses a CardLayout. Note that\nTabPanel and Carousel both get a CardLayout by default, so both\nwill have this event.\nA handler can return false to cancel the card switch.</p>\n",
4665       "params": [
4666         {
4667           "type": "Ext.container.Container",
4668           "name": "this",
4669           "doc": "\n",
4670           "optional": false
4671         },
4672         {
4673           "type": "Ext.Component",
4674           "name": "newCard",
4675           "doc": "<p>The card that will be switched to</p>\n",
4676           "optional": false
4677         },
4678         {
4679           "type": "Ext.Component",
4680           "name": "oldCard",
4681           "doc": "<p>The card that will be switched from</p>\n",
4682           "optional": false
4683         },
4684         {
4685           "type": "Number",
4686           "name": "index",
4687           "doc": "<p>The index of the card that will be switched to</p>\n",
4688           "optional": false
4689         },
4690         {
4691           "type": "Boolean",
4692           "name": "animated",
4693           "doc": "<p>True if this cardswitch will be animated</p>\n",
4694           "optional": false
4695         }
4696       ],
4697       "private": false,
4698       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4699       "linenr": 232,
4700       "html_filename": "AbstractContainer.html",
4701       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforecardswitch",
4702       "shortDoc": "Fires before this container switches the active card. This event\nis only available if this container uses a CardLayou..."
4703     },
4704     {
4705       "tagname": "event",
4706       "name": "beforedeactivate",
4707       "member": "Ext.AbstractComponent",
4708       "doc": "<p>Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deactivate\nfrom occurring.</p>\n",
4709       "params": [
4710         {
4711           "type": "Ext.Component",
4712           "name": "this",
4713           "doc": "\n",
4714           "optional": false
4715         }
4716       ],
4717       "private": false,
4718       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4719       "linenr": 546,
4720       "html_filename": "AbstractComponent.html",
4721       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedeactivate",
4722       "shortDoc": "Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deacti..."
4723     },
4724     {
4725       "tagname": "event",
4726       "name": "beforedestroy",
4727       "member": "Ext.AbstractComponent",
4728       "doc": "<p>Fires before the component is <a href=\"#/api/Ext.form.FieldContainer-event-destroy\" rel=\"Ext.form.FieldContainer-event-destroy\" class=\"docClass\">destroy</a>ed. Return false from an event handler to stop the <a href=\"#/api/Ext.form.FieldContainer-event-destroy\" rel=\"Ext.form.FieldContainer-event-destroy\" class=\"docClass\">destroy</a>.</p>\n",
4729       "params": [
4730         {
4731           "type": "Ext.Component",
4732           "name": "this",
4733           "doc": "\n",
4734           "optional": false
4735         }
4736       ],
4737       "private": false,
4738       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4739       "linenr": 635,
4740       "html_filename": "AbstractComponent.html",
4741       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedestroy",
4742       "shortDoc": "<p>Fires before the component is <a href=\"#/api/Ext.form.FieldContainer-event-destroy\" rel=\"Ext.form.FieldContainer-event-destroy\" class=\"docClass\">destroy</a>ed. Return false from an event handler to stop the <a href=\"#/api/Ext.form.FieldContainer-event-destroy\" rel=\"Ext.form.FieldContainer-event-destroy\" class=\"docClass\">destroy</a>.</p>\n"
4743     },
4744     {
4745       "tagname": "event",
4746       "name": "beforehide",
4747       "member": "Ext.AbstractComponent",
4748       "doc": "<p>Fires before the component is hidden when calling the <a href=\"#/api/Ext.form.FieldContainer-event-hide\" rel=\"Ext.form.FieldContainer-event-hide\" class=\"docClass\">hide</a> method.\nReturn false from an event handler to stop the hide.</p>\n",
4749       "params": [
4750         {
4751           "type": "Ext.Component",
4752           "name": "this",
4753           "doc": "\n",
4754           "optional": false
4755         }
4756       ],
4757       "private": false,
4758       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4759       "linenr": 593,
4760       "html_filename": "AbstractComponent.html",
4761       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforehide",
4762       "shortDoc": "<p>Fires before the component is hidden when calling the <a href=\"#/api/Ext.form.FieldContainer-event-hide\" rel=\"Ext.form.FieldContainer-event-hide\" class=\"docClass\">hide</a> method.\nReturn false from an event handler to stop the hide.</p>\n"
4763     },
4764     {
4765       "tagname": "event",
4766       "name": "beforeremove",
4767       "member": "Ext.container.AbstractContainer",
4768       "doc": "<p>Fires before any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is removed from the container.  A handler can return\nfalse to cancel the remove.</p>\n",
4769       "params": [
4770         {
4771           "type": "Ext.container.Container",
4772           "name": "this",
4773           "doc": "\n",
4774           "optional": false
4775         },
4776         {
4777           "type": "Ext.Component",
4778           "name": "component",
4779           "doc": "<p>The component being removed</p>\n",
4780           "optional": false
4781         }
4782       ],
4783       "private": false,
4784       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4785       "linenr": 207,
4786       "html_filename": "AbstractContainer.html",
4787       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforeremove",
4788       "shortDoc": "<p>Fires before any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is removed from the container.  A handler can return\nfalse to cancel the remove.</p>\n"
4789     },
4790     {
4791       "tagname": "event",
4792       "name": "beforerender",
4793       "member": "Ext.AbstractComponent",
4794       "doc": "<p>Fires before the component is <a href=\"#/api/Ext.form.FieldContainer-property-rendered\" rel=\"Ext.form.FieldContainer-property-rendered\" class=\"docClass\">rendered</a>. Return false from an\nevent handler to stop the <a href=\"#/api/Ext.form.FieldContainer-event-render\" rel=\"Ext.form.FieldContainer-event-render\" class=\"docClass\">render</a>.</p>\n",
4795       "params": [
4796         {
4797           "type": "Ext.Component",
4798           "name": "this",
4799           "doc": "\n",
4800           "optional": false
4801         }
4802       ],
4803       "private": false,
4804       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4805       "linenr": 614,
4806       "html_filename": "AbstractComponent.html",
4807       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforerender",
4808       "shortDoc": "<p>Fires before the component is <a href=\"#/api/Ext.form.FieldContainer-property-rendered\" rel=\"Ext.form.FieldContainer-property-rendered\" class=\"docClass\">rendered</a>. Return false from an\nevent handler to stop the <a href=\"#/api/Ext.form.FieldContainer-event-render\" rel=\"Ext.form.FieldContainer-event-render\" class=\"docClass\">render</a>.</p>\n"
4809     },
4810     {
4811       "tagname": "event",
4812       "name": "beforeshow",
4813       "member": "Ext.AbstractComponent",
4814       "doc": "<p>Fires before the component is shown when calling the <a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a> method.\nReturn false from an event handler to stop the show.</p>\n",
4815       "params": [
4816         {
4817           "type": "Ext.Component",
4818           "name": "this",
4819           "doc": "\n",
4820           "optional": false
4821         }
4822       ],
4823       "private": false,
4824       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4825       "linenr": 580,
4826       "html_filename": "AbstractComponent.html",
4827       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeshow",
4828       "shortDoc": "<p>Fires before the component is shown when calling the <a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a> method.\nReturn false from an event handler to stop the show.</p>\n"
4829     },
4830     {
4831       "tagname": "event",
4832       "name": "beforestaterestore",
4833       "member": "Ext.state.Stateful",
4834       "doc": "<p>Fires before the state of the object is restored. Return false from an event handler to stop the restore.</p>\n",
4835       "params": [
4836         {
4837           "type": "Ext.state.Stateful",
4838           "name": "this",
4839           "doc": "\n",
4840           "optional": false
4841         },
4842         {
4843           "type": "Object",
4844           "name": "state",
4845           "doc": "<p>The hash of state values returned from the StateProvider. If this\nevent is not vetoed, then the state object is passed to <b><tt>applyState</tt></b>. By default,\nthat simply copies property values into this object. The method maybe overriden to\nprovide custom state restoration.</p>\n",
4846           "optional": false
4847         }
4848       ],
4849       "private": false,
4850       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
4851       "linenr": 101,
4852       "html_filename": "Stateful.html",
4853       "href": "Stateful.html#Ext-state-Stateful-event-beforestaterestore",
4854       "shortDoc": "<p>Fires before the state of the object is restored. Return false from an event handler to stop the restore.</p>\n"
4855     },
4856     {
4857       "tagname": "event",
4858       "name": "beforestatesave",
4859       "member": "Ext.state.Stateful",
4860       "doc": "<p>Fires before the state of the object is saved to the configured state provider. Return false to stop the save.</p>\n",
4861       "params": [
4862         {
4863           "type": "Ext.state.Stateful",
4864           "name": "this",
4865           "doc": "\n",
4866           "optional": false
4867         },
4868         {
4869           "type": "Object",
4870           "name": "state",
4871           "doc": "<p>The hash of state values. This is determined by calling\n<b><tt>getState()</tt></b> on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, <a href=\"#/api/Ext.state.Stateful\" rel=\"Ext.state.Stateful\" class=\"docClass\">Ext.state.Stateful</a>\nhas a null implementation.</p>\n",
4872           "optional": false
4873         }
4874       ],
4875       "private": false,
4876       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
4877       "linenr": 122,
4878       "html_filename": "Stateful.html",
4879       "href": "Stateful.html#Ext-state-Stateful-event-beforestatesave",
4880       "shortDoc": "<p>Fires before the state of the object is saved to the configured state provider. Return false to stop the save.</p>\n"
4881     },
4882     {
4883       "tagname": "event",
4884       "name": "cardswitch",
4885       "member": "Ext.container.AbstractContainer",
4886       "doc": "<p>Fires after this container switches the active card. If the card\nis switched using an animation, this event will fire after the\nanimation has finished. This event is only available if this container\nuses a CardLayout. Note that TabPanel and Carousel both get a CardLayout\nby default, so both will have this event.</p>\n",
4887       "params": [
4888         {
4889           "type": "Ext.container.Container",
4890           "name": "this",
4891           "doc": "\n",
4892           "optional": false
4893         },
4894         {
4895           "type": "Ext.Component",
4896           "name": "newCard",
4897           "doc": "<p>The card that has been switched to</p>\n",
4898           "optional": false
4899         },
4900         {
4901           "type": "Ext.Component",
4902           "name": "oldCard",
4903           "doc": "<p>The card that has been switched from</p>\n",
4904           "optional": false
4905         },
4906         {
4907           "type": "Number",
4908           "name": "index",
4909           "doc": "<p>The index of the card that has been switched to</p>\n",
4910           "optional": false
4911         },
4912         {
4913           "type": "Boolean",
4914           "name": "animated",
4915           "doc": "<p>True if this cardswitch was animated</p>\n",
4916           "optional": false
4917         }
4918       ],
4919       "private": false,
4920       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
4921       "linenr": 246,
4922       "html_filename": "AbstractContainer.html",
4923       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-cardswitch",
4924       "shortDoc": "Fires after this container switches the active card. If the card\nis switched using an animation, this event will fire..."
4925     },
4926     {
4927       "tagname": "event",
4928       "name": "deactivate",
4929       "member": "Ext.AbstractComponent",
4930       "doc": "<p>Fires after a Component has been visually deactivated.</p>\n",
4931       "params": [
4932         {
4933           "type": "Ext.Component",
4934           "name": "this",
4935           "doc": "\n",
4936           "optional": false
4937         }
4938       ],
4939       "private": false,
4940       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4941       "linenr": 554,
4942       "html_filename": "AbstractComponent.html",
4943       "href": "AbstractComponent.html#Ext-AbstractComponent-event-deactivate",
4944       "shortDoc": "<p>Fires after a Component has been visually deactivated.</p>\n"
4945     },
4946     {
4947       "tagname": "event",
4948       "name": "destroy",
4949       "member": "Ext.AbstractComponent",
4950       "doc": "<p>Fires after the component is <a href=\"#/api/Ext.form.FieldContainer-event-destroy\" rel=\"Ext.form.FieldContainer-event-destroy\" class=\"docClass\">destroy</a>ed.</p>\n",
4951       "params": [
4952         {
4953           "type": "Ext.Component",
4954           "name": "this",
4955           "doc": "\n",
4956           "optional": false
4957         }
4958       ],
4959       "private": false,
4960       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4961       "linenr": 641,
4962       "html_filename": "AbstractComponent.html",
4963       "href": "AbstractComponent.html#Ext-AbstractComponent-event-destroy",
4964       "shortDoc": "<p>Fires after the component is <a href=\"#/api/Ext.form.FieldContainer-event-destroy\" rel=\"Ext.form.FieldContainer-event-destroy\" class=\"docClass\">destroy</a>ed.</p>\n"
4965     },
4966     {
4967       "tagname": "event",
4968       "name": "disable",
4969       "member": "Ext.AbstractComponent",
4970       "doc": "<p>Fires after the component is disabled.</p>\n",
4971       "params": [
4972         {
4973           "type": "Ext.Component",
4974           "name": "this",
4975           "doc": "\n",
4976           "optional": false
4977         }
4978       ],
4979       "private": false,
4980       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4981       "linenr": 568,
4982       "html_filename": "AbstractComponent.html",
4983       "href": "AbstractComponent.html#Ext-AbstractComponent-event-disable",
4984       "shortDoc": "<p>Fires after the component is disabled.</p>\n"
4985     },
4986     {
4987       "tagname": "event",
4988       "name": "enable",
4989       "member": "Ext.AbstractComponent",
4990       "doc": "<p>Fires after the component is enabled.</p>\n",
4991       "params": [
4992         {
4993           "type": "Ext.Component",
4994           "name": "this",
4995           "doc": "\n",
4996           "optional": false
4997         }
4998       ],
4999       "private": false,
5000       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5001       "linenr": 574,
5002       "html_filename": "AbstractComponent.html",
5003       "href": "AbstractComponent.html#Ext-AbstractComponent-event-enable",
5004       "shortDoc": "<p>Fires after the component is enabled.</p>\n"
5005     },
5006     {
5007       "tagname": "event",
5008       "name": "errorchange",
5009       "member": "Ext.form.Labelable",
5010       "doc": "<p>Fires when the active error message is changed via <a href=\"#/api/Ext.form.FieldContainer-method-setActiveError\" rel=\"Ext.form.FieldContainer-method-setActiveError\" class=\"docClass\">setActiveError</a>.</p>\n",
5011       "params": [
5012         {
5013           "type": "Ext.form.Labelable",
5014           "name": "this",
5015           "doc": "\n",
5016           "optional": false
5017         },
5018         {
5019           "type": "String",
5020           "name": "error",
5021           "doc": "<p>The active error message</p>\n",
5022           "optional": false
5023         }
5024       ],
5025       "private": false,
5026       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/Labelable.js",
5027       "linenr": 222,
5028       "html_filename": "Labelable.html",
5029       "href": "Labelable.html#Ext-form-Labelable-event-errorchange",
5030       "shortDoc": "<p>Fires when the active error message is changed via <a href=\"#/api/Ext.form.FieldContainer-method-setActiveError\" rel=\"Ext.form.FieldContainer-method-setActiveError\" class=\"docClass\">setActiveError</a>.</p>\n"
5031     },
5032     {
5033       "tagname": "event",
5034       "name": "fielderrorchange",
5035       "member": "Ext.form.FieldAncestor",
5036       "doc": "<p>Fires when the active error message is changed for any one of the <a href=\"#/api/Ext.form.Labelable\" rel=\"Ext.form.Labelable\" class=\"docClass\">Ext.form.Labelable</a>\ninstances within this container.</p>\n",
5037       "params": [
5038         {
5039           "type": "Ext.form.FieldAncestor",
5040           "name": "this",
5041           "doc": "\n",
5042           "optional": false
5043         },
5044         {
5045           "type": "Ext.form.Labelable",
5046           "name": "The",
5047           "doc": "<p>Labelable instance whose active error was changed</p>\n",
5048           "optional": false
5049         },
5050         {
5051           "type": "String",
5052           "name": "error",
5053           "doc": "<p>The active error message</p>\n",
5054           "optional": false
5055         }
5056       ],
5057       "private": false,
5058       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldAncestor.js",
5059       "linenr": 81,
5060       "html_filename": "FieldAncestor.html",
5061       "href": "FieldAncestor.html#Ext-form-FieldAncestor-event-fielderrorchange",
5062       "shortDoc": "<p>Fires when the active error message is changed for any one of the <a href=\"#/api/Ext.form.Labelable\" rel=\"Ext.form.Labelable\" class=\"docClass\">Ext.form.Labelable</a>\ninstances within this container.</p>\n"
5063     },
5064     {
5065       "tagname": "event",
5066       "name": "hide",
5067       "member": "Ext.AbstractComponent",
5068       "doc": "<p>Fires after the component is hidden.\nFires after the component is hidden when calling the <a href=\"#/api/Ext.form.FieldContainer-event-hide\" rel=\"Ext.form.FieldContainer-event-hide\" class=\"docClass\">hide</a> method.</p>\n",
5069       "params": [
5070         {
5071           "type": "Ext.Component",
5072           "name": "this",
5073           "doc": "\n",
5074           "optional": false
5075         }
5076       ],
5077       "private": false,
5078       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5079       "linenr": 600,
5080       "html_filename": "AbstractComponent.html",
5081       "href": "AbstractComponent.html#Ext-AbstractComponent-event-hide",
5082       "shortDoc": "<p>Fires after the component is hidden.\nFires after the component is hidden when calling the <a href=\"#/api/Ext.form.FieldContainer-event-hide\" rel=\"Ext.form.FieldContainer-event-hide\" class=\"docClass\">hide</a> method.</p>\n"
5083     },
5084     {
5085       "tagname": "event",
5086       "name": "move",
5087       "member": "Ext.AbstractComponent",
5088       "doc": "<p>Fires after the component is moved.</p>\n",
5089       "params": [
5090         {
5091           "type": "Ext.Component",
5092           "name": "this",
5093           "doc": "\n",
5094           "optional": false
5095         },
5096         {
5097           "type": "Number",
5098           "name": "x",
5099           "doc": "<p>The new x position</p>\n",
5100           "optional": false
5101         },
5102         {
5103           "type": "Number",
5104           "name": "y",
5105           "doc": "<p>The new y position</p>\n",
5106           "optional": false
5107         }
5108       ],
5109       "private": false,
5110       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5111       "linenr": 655,
5112       "html_filename": "AbstractComponent.html",
5113       "href": "AbstractComponent.html#Ext-AbstractComponent-event-move",
5114       "shortDoc": "<p>Fires after the component is moved.</p>\n"
5115     },
5116     {
5117       "tagname": "event",
5118       "name": "remove",
5119       "member": "Ext.container.AbstractContainer",
5120       "doc": "<p>@bubbles\nFires after any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is removed from the container.</p>\n",
5121       "params": [
5122         {
5123           "type": "Ext.container.Container",
5124           "name": "this",
5125           "doc": "\n",
5126           "optional": false
5127         },
5128         {
5129           "type": "Ext.Component",
5130           "name": "component",
5131           "doc": "<p>The component that was removed</p>\n",
5132           "optional": false
5133         }
5134       ],
5135       "private": false,
5136       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5137       "linenr": 224,
5138       "html_filename": "AbstractContainer.html",
5139       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-remove",
5140       "shortDoc": "<p>@bubbles\nFires after any <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> is removed from the container.</p>\n"
5141     },
5142     {
5143       "tagname": "event",
5144       "name": "removed",
5145       "member": "Ext.AbstractComponent",
5146       "doc": "<p>Fires when a component is removed from an Ext.container.Container</p>\n",
5147       "params": [
5148         {
5149           "type": "Ext.Component",
5150           "name": "this",
5151           "doc": "\n",
5152           "optional": false
5153         },
5154         {
5155           "type": "Ext.container.Container",
5156           "name": "ownerCt",
5157           "doc": "<p>Container which holds the component</p>\n",
5158           "optional": false
5159         }
5160       ],
5161       "private": false,
5162       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5163       "linenr": 607,
5164       "html_filename": "AbstractComponent.html",
5165       "href": "AbstractComponent.html#Ext-AbstractComponent-event-removed",
5166       "shortDoc": "<p>Fires when a component is removed from an Ext.container.Container</p>\n"
5167     },
5168     {
5169       "tagname": "event",
5170       "name": "render",
5171       "member": "Ext.AbstractComponent",
5172       "doc": "<p>Fires after the component markup is <a href=\"#/api/Ext.form.FieldContainer-property-rendered\" rel=\"Ext.form.FieldContainer-property-rendered\" class=\"docClass\">rendered</a>.</p>\n",
5173       "params": [
5174         {
5175           "type": "Ext.Component",
5176           "name": "this",
5177           "doc": "\n",
5178           "optional": false
5179         }
5180       ],
5181       "private": false,
5182       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5183       "linenr": 621,
5184       "html_filename": "AbstractComponent.html",
5185       "href": "AbstractComponent.html#Ext-AbstractComponent-event-render",
5186       "shortDoc": "<p>Fires after the component markup is <a href=\"#/api/Ext.form.FieldContainer-property-rendered\" rel=\"Ext.form.FieldContainer-property-rendered\" class=\"docClass\">rendered</a>.</p>\n"
5187     },
5188     {
5189       "tagname": "event",
5190       "name": "resize",
5191       "member": "Ext.AbstractComponent",
5192       "doc": "<p>Fires after the component is resized.</p>\n",
5193       "params": [
5194         {
5195           "type": "Ext.Component",
5196           "name": "this",
5197           "doc": "\n",
5198           "optional": false
5199         },
5200         {
5201           "type": "Number",
5202           "name": "adjWidth",
5203           "doc": "<p>The box-adjusted width that was set</p>\n",
5204           "optional": false
5205         },
5206         {
5207           "type": "Number",
5208           "name": "adjHeight",
5209           "doc": "<p>The box-adjusted height that was set</p>\n",
5210           "optional": false
5211         }
5212       ],
5213       "private": false,
5214       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5215       "linenr": 647,
5216       "html_filename": "AbstractComponent.html",
5217       "href": "AbstractComponent.html#Ext-AbstractComponent-event-resize",
5218       "shortDoc": "<p>Fires after the component is resized.</p>\n"
5219     },
5220     {
5221       "tagname": "event",
5222       "name": "show",
5223       "member": "Ext.AbstractComponent",
5224       "doc": "<p>Fires after the component is shown when calling the <a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a> method.</p>\n",
5225       "params": [
5226         {
5227           "type": "Ext.Component",
5228           "name": "this",
5229           "doc": "\n",
5230           "optional": false
5231         }
5232       ],
5233       "private": false,
5234       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5235       "linenr": 587,
5236       "html_filename": "AbstractComponent.html",
5237       "href": "AbstractComponent.html#Ext-AbstractComponent-event-show",
5238       "shortDoc": "<p>Fires after the component is shown when calling the <a href=\"#/api/Ext.form.FieldContainer-event-show\" rel=\"Ext.form.FieldContainer-event-show\" class=\"docClass\">show</a> method.</p>\n"
5239     },
5240     {
5241       "tagname": "event",
5242       "name": "staterestore",
5243       "member": "Ext.state.Stateful",
5244       "doc": "<p>Fires after the state of the object is restored.</p>\n",
5245       "params": [
5246         {
5247           "type": "Ext.state.Stateful",
5248           "name": "this",
5249           "doc": "\n",
5250           "optional": false
5251         },
5252         {
5253           "type": "Object",
5254           "name": "state",
5255           "doc": "<p>The hash of state values returned from the StateProvider. This is passed\nto <b><tt>applyState</tt></b>. By default, that simply copies property values into this\nobject. The method maybe overriden to provide custom state restoration.</p>\n",
5256           "optional": false
5257         }
5258       ],
5259       "private": false,
5260       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
5261       "linenr": 112,
5262       "html_filename": "Stateful.html",
5263       "href": "Stateful.html#Ext-state-Stateful-event-staterestore",
5264       "shortDoc": "<p>Fires after the state of the object is restored.</p>\n"
5265     },
5266     {
5267       "tagname": "event",
5268       "name": "statesave",
5269       "member": "Ext.state.Stateful",
5270       "doc": "<p>Fires after the state of the object is saved to the configured state provider.</p>\n",
5271       "params": [
5272         {
5273           "type": "Ext.state.Stateful",
5274           "name": "this",
5275           "doc": "\n",
5276           "optional": false
5277         },
5278         {
5279           "type": "Object",
5280           "name": "state",
5281           "doc": "<p>The hash of state values. This is determined by calling\n<b><tt>getState()</tt></b> on the object. This method must be provided by the\ndeveloper to return whetever representation of state is required, by default, <a href=\"#/api/Ext.state.Stateful\" rel=\"Ext.state.Stateful\" class=\"docClass\">Ext.state.Stateful</a>\nhas a null implementation.</p>\n",
5282           "optional": false
5283         }
5284       ],
5285       "private": false,
5286       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
5287       "linenr": 133,
5288       "html_filename": "Stateful.html",
5289       "href": "Stateful.html#Ext-state-Stateful-event-statesave",
5290       "shortDoc": "<p>Fires after the state of the object is saved to the configured state provider.</p>\n"
5291     }
5292   ],
5293   "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/form/FieldContainer.js",
5294   "linenr": 1,
5295   "html_filename": "FieldContainer.html",
5296   "href": "FieldContainer.html#Ext-form-FieldContainer",
5297   "cssVar": [
5298
5299   ],
5300   "cssMixin": [
5301
5302   ],
5303   "component": true,
5304   "superclasses": [
5305     "Ext.AbstractComponent",
5306     "Ext.Component",
5307     "Ext.container.AbstractContainer",
5308     "Ext.container.Container"
5309   ],
5310   "subclasses": [
5311     "Ext.form.CheckboxGroup"
5312   ],
5313   "mixedInto": [
5314
5315   ],
5316   "allMixins": [
5317     "Ext.form.Labelable",
5318     "Ext.form.FieldAncestor",
5319     "Ext.util.Floating",
5320     "Ext.util.Observable",
5321     "Ext.util.Animate",
5322     "Ext.state.Stateful"
5323   ]
5324 });