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