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