Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.grid.property.Grid.js
1 Ext.data.JsonP.Ext_grid_property_Grid({
2   "tagname": "class",
3   "name": "Ext.grid.property.Grid",
4   "doc": "<p>A specialized grid implementation intended to mimic the traditional property grid as typically seen in\ndevelopment IDEs.  Each row in the grid represents a property of some object, and the data is stored\nas a set of name/value pairs in <a href=\"#/api/Ext.grid.property.Property\" rel=\"Ext.grid.property.Property\" class=\"docClass\">Properties</a>.  Example usage:</p>\n\n<pre><code>var grid = new Ext.grid.property.Grid({\n    title: 'Properties Grid',\n    width: 300,\n    renderTo: 'grid-ct',\n    source: {\n        \"(name)\": \"My Object\",\n        \"Created\": Ext.Date.parse('10/15/2006', 'm/d/Y'),\n        \"Available\": false,\n        \"Version\": .01,\n        \"Description\": \"A test object\"\n    }\n});\n</code></pre>\n\n",
5   "extends": "Ext.grid.Panel",
6   "mixins": [
7
8   ],
9   "alternateClassNames": [
10     "Ext.grid.PropertyGrid"
11   ],
12   "xtype": "propertygrid",
13   "author": null,
14   "docauthor": null,
15   "singleton": false,
16   "private": false,
17   "cfg": [
18     {
19       "tagname": "cfg",
20       "name": "activeItem",
21       "member": "Ext.container.AbstractContainer",
22       "type": "String/Number",
23       "doc": "<p>A string component id or the numeric index of the component that should be initially activated within the\ncontainer's layout on render.  For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first\nitem in the container's collection).  activeItem only applies to layout styles that can display\nitems one at a time (like <a href=\"#/api/Ext.layout.container.Card\" rel=\"Ext.layout.container.Card\" class=\"docClass\">Ext.layout.container.Card</a> and <a href=\"#/api/Ext.layout.container.Fit\" rel=\"Ext.layout.container.Fit\" class=\"docClass\">Ext.layout.container.Fit</a>).</p>\n",
24       "private": false,
25       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
26       "linenr": 87,
27       "html_filename": "AbstractContainer.html",
28       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-activeItem",
29       "shortDoc": "A string component id or the numeric index of the component that should be initially activated within the\ncontainer's..."
30     },
31     {
32       "tagname": "cfg",
33       "name": "animCollapse",
34       "member": "Ext.panel.Panel",
35       "type": "Boolean",
36       "doc": "<p><code>true</code> to animate the transition when the panel is collapsed, <code>false</code> to skip the\nanimation (defaults to <code>true</code> if the <a href=\"#/api/Ext.fx.Anim\" rel=\"Ext.fx.Anim\" class=\"docClass\">Ext.fx.Anim</a> class is available, otherwise <code>false</code>).\nMay also be specified as the animation duration in milliseconds.</p>\n",
37       "private": false,
38       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
39       "linenr": 111,
40       "html_filename": "Panel3.html",
41       "href": "Panel3.html#Ext-panel-Panel-cfg-animCollapse",
42       "shortDoc": "true to animate the transition when the panel is collapsed, false to skip the\nanimation (defaults to true if the Ext...."
43     },
44     {
45       "tagname": "cfg",
46       "name": "autoDestroy",
47       "member": "Ext.container.AbstractContainer",
48       "type": "Boolean",
49       "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",
50       "private": false,
51       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
52       "linenr": 161,
53       "html_filename": "AbstractContainer.html",
54       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-autoDestroy",
55       "shortDoc": "If true the container will automatically destroy any contained component that is removed from it, else\ndestruction mu..."
56     },
57     {
58       "tagname": "cfg",
59       "name": "autoEl",
60       "member": "Ext.AbstractComponent",
61       "type": "Mixed",
62       "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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-renderTpl\" rel=\"Ext.grid.property.Grid-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",
63       "private": false,
64       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
65       "linenr": 109,
66       "html_filename": "AbstractComponent.html",
67       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoEl",
68       "shortDoc": "A tag name or DomHelper spec used to create the Element which will\nencapsulate this Component.\n\n\nYou do not normally ..."
69     },
70     {
71       "tagname": "cfg",
72       "name": "autoRender",
73       "member": "Ext.AbstractComponent",
74       "type": "Mixed",
75       "doc": "<p>This config is intended mainly for <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-cfg-floating\" class=\"docClass\">floating</a> Components which may or may not be shown. Instead\nof using <a href=\"#/api/Ext.grid.property.Grid-cfg-renderTo\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-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",
76       "private": false,
77       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
78       "linenr": 478,
79       "html_filename": "AbstractComponent.html",
80       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoRender",
81       "shortDoc": "This config is intended mainly for floating Components which may or may not be shown. Instead\nof using renderTo in th..."
82     },
83     {
84       "tagname": "cfg",
85       "name": "autoScroll",
86       "member": "Ext.Component",
87       "type": "Boolean",
88       "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",
89       "private": false,
90       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
91       "linenr": 169,
92       "html_filename": "Component.html",
93       "href": "Component.html#Ext-Component-cfg-autoScroll",
94       "shortDoc": "true to use overflow:'auto' on the components layout element and show scroll bars automatically when\nnecessary, false..."
95     },
96     {
97       "tagname": "cfg",
98       "name": "autoShow",
99       "member": "Ext.AbstractComponent",
100       "type": "Boolean",
101       "doc": "<p>True to automatically show the component upon creation.\nThis config option may only be used for <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-cfg-floating\" class=\"docClass\">floating</a> components or components\nthat use <a href=\"#/api/Ext.grid.property.Grid-cfg-autoRender\" rel=\"Ext.grid.property.Grid-cfg-autoRender\" class=\"docClass\">autoRender</a>. Defaults to <tt>false</tt>.</p>\n",
102       "private": false,
103       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
104       "linenr": 471,
105       "html_filename": "AbstractComponent.html",
106       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-autoShow",
107       "shortDoc": "True to automatically show the component upon creation.\nThis config option may only be used for floating components o..."
108     },
109     {
110       "tagname": "cfg",
111       "name": "baseCls",
112       "member": "Ext.panel.AbstractPanel",
113       "type": "String",
114       "doc": "<p>The base CSS class to apply to this panel's element (defaults to <code>'x-panel'</code>).</p>\n",
115       "private": false,
116       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
117       "linenr": 19,
118       "html_filename": "AbstractPanel.html",
119       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-baseCls"
120     },
121     {
122       "tagname": "cfg",
123       "name": "bbar",
124       "member": "Ext.panel.Panel",
125       "type": "Object/Array",
126       "doc": "<p>Convenience method. Short for 'Bottom Bar'.</p>\n\n<pre><code>bbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n</code></pre>\n\n<p>is equivalent to</p>\n\n<pre><code>dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n</code></pre>\n",
127       "private": false,
128       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
129       "linenr": 483,
130       "html_filename": "Panel3.html",
131       "href": "Panel3.html#Ext-panel-Panel-cfg-bbar",
132       "shortDoc": "Convenience method. Short for 'Bottom Bar'.\n\nbbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n\n\nis equivalent to\n\ndo..."
133     },
134     {
135       "tagname": "cfg",
136       "name": "bodyBorder",
137       "member": "Ext.panel.AbstractPanel",
138       "type": "Boolean",
139       "doc": "<p>A shortcut to add or remove the border on the body of a panel. This only applies to a panel which has the <a href=\"#/api/Ext.grid.property.Grid-cfg-frame\" rel=\"Ext.grid.property.Grid-cfg-frame\" class=\"docClass\">frame</a> configuration set to <code>true</code>.\nDefaults to <code>undefined</code>.</p>\n",
140       "private": false,
141       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
142       "linenr": 32,
143       "html_filename": "AbstractPanel.html",
144       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyBorder",
145       "shortDoc": "A shortcut to add or remove the border on the body of a panel. This only applies to a panel which has the frame confi..."
146     },
147     {
148       "tagname": "cfg",
149       "name": "bodyCls",
150       "member": "Ext.panel.AbstractPanel",
151       "type": "String/Array",
152       "doc": "<p>A CSS class, space-delimited string of classes, or array of classes to be applied to the panel's body element.\nThe following examples are all valid:</p>\n\n<pre><code>bodyCls: 'foo'\nbodyCls: 'foo bar'\nbodyCls: ['foo', 'bar']\n</code></pre>\n\n",
153       "private": false,
154       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
155       "linenr": 52,
156       "html_filename": "AbstractPanel.html",
157       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyCls",
158       "shortDoc": "A CSS class, space-delimited string of classes, or array of classes to be applied to the panel's body element.\nThe fo..."
159     },
160     {
161       "tagname": "cfg",
162       "name": "bodyPadding",
163       "member": "Ext.panel.AbstractPanel",
164       "type": "Number/String",
165       "doc": "<p>A shortcut for setting a padding style on the body element. The value can either be\na number to be applied to all sides, or a normal css string describing padding.\nDefaults to <code>undefined</code>.</p>\n",
166       "private": false,
167       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
168       "linenr": 25,
169       "html_filename": "AbstractPanel.html",
170       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyPadding",
171       "shortDoc": "A shortcut for setting a padding style on the body element. The value can either be\na number to be applied to all sid..."
172     },
173     {
174       "tagname": "cfg",
175       "name": "bodyStyle",
176       "member": "Ext.panel.AbstractPanel",
177       "type": "String/Object/Function",
178       "doc": "<p>Custom CSS styles to be applied to the panel's body element, which can be supplied as a valid CSS style string,\nan object containing style property name/value pairs or a function that returns such a string or object.\nFor example, these two formats are interpreted to be equivalent:</p>\n\n<pre><code>bodyStyle: 'background:#ffc; padding:10px;'\n\nbodyStyle: {\n    background: '#ffc',\n    padding: '10px'\n}\n</code></pre>\n\n",
179       "private": false,
180       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
181       "linenr": 38,
182       "html_filename": "AbstractPanel.html",
183       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-cfg-bodyStyle",
184       "shortDoc": "Custom CSS styles to be applied to the panel's body element, which can be supplied as a valid CSS style string,\nan ob..."
185     },
186     {
187       "tagname": "cfg",
188       "name": "border",
189       "member": "Ext.AbstractComponent",
190       "type": "Number/String",
191       "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",
192       "private": false,
193       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
194       "linenr": 339,
195       "html_filename": "AbstractComponent.html",
196       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-border",
197       "shortDoc": "Specifies the border for this component. The border can be a single numeric value to apply to all sides or\nit can be ..."
198     },
199     {
200       "tagname": "cfg",
201       "name": "bubbleEvents",
202       "member": "Ext.container.AbstractContainer",
203       "type": "Array",
204       "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",
205       "private": false,
206       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
207       "linenr": 179,
208       "html_filename": "AbstractContainer.html",
209       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-bubbleEvents",
210       "shortDoc": "An array of events that, when fired, should be bubbled to any parent container.\nSee Ext.util.Observable.enableBubble...."
211     },
212     {
213       "tagname": "cfg",
214       "name": "buttons",
215       "member": "Ext.panel.Panel",
216       "type": "Object/Array",
217       "doc": "<p>Convenience method used for adding buttons docked to the bottom right of the panel. This is a\nsynonym for the <a href=\"#/api/Ext.grid.property.Grid-cfg-fbar\" rel=\"Ext.grid.property.Grid-cfg-fbar\" class=\"docClass\">fbar</a> config.</p>\n\n<pre><code>buttons: [\n  { text: 'Button 1' }\n]\n</code></pre>\n\n<p>is equivalent to</p>\n\n<pre><code>dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    defaults: {minWidth: <a href=\"#/api/Ext.grid.property.Grid-cfg-minButtonWidth\" rel=\"Ext.grid.property.Grid-cfg-minButtonWidth\" class=\"docClass\">minButtonWidth</a>},\n    items: [\n        { xtype: 'component', flex: 1 },\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n</code></pre>\n\n<p>The <a href=\"#/api/Ext.grid.property.Grid-cfg-minButtonWidth\" rel=\"Ext.grid.property.Grid-cfg-minButtonWidth\" class=\"docClass\">minButtonWidth</a> is used as the default <a href=\"#/api/Ext.button.Button-cfg-minWidth\" rel=\"Ext.button.Button-cfg-minWidth\" class=\"docClass\">minWidth</a> for\neach of the buttons in the buttons toolbar.</p>\n",
218       "private": false,
219       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
220       "linenr": 509,
221       "html_filename": "Panel3.html",
222       "href": "Panel3.html#Ext-panel-Panel-cfg-buttons",
223       "shortDoc": "Convenience method used for adding buttons docked to the bottom right of the panel. This is a\nsynonym for the fbar co..."
224     },
225     {
226       "tagname": "cfg",
227       "name": "closable",
228       "member": "Ext.panel.Panel",
229       "type": "Boolean",
230       "doc": "<p>True to display the 'close' tool button and allow the user to close the window, false to\nhide the button and disallow closing the window (defaults to <code>false</code>).</p>\n\n\n<p>By default, when close is requested by clicking the close button in the header, the <a href=\"#/api/Ext.grid.property.Grid-method-close\" rel=\"Ext.grid.property.Grid-method-close\" class=\"docClass\">close</a>\nmethod will be called. This will <i><a href=\"#/api/Ext.Component-event-destroy\" rel=\"Ext.Component-event-destroy\" class=\"docClass\">destroy</a></i> the Panel and its content\nmeaning that it may not be reused.</p>\n\n\n<p>To make closing a Panel <i>hide</i> the Panel so that it may be reused, set\n<a href=\"#/api/Ext.grid.property.Grid-cfg-closeAction\" rel=\"Ext.grid.property.Grid-cfg-closeAction\" class=\"docClass\">closeAction</a> to 'hide'.</p>\n\n",
231       "private": false,
232       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
233       "linenr": 211,
234       "html_filename": "Panel3.html",
235       "href": "Panel3.html#Ext-panel-Panel-cfg-closable",
236       "shortDoc": "True to display the 'close' tool button and allow the user to close the window, false to\nhide the button and disallow..."
237     },
238     {
239       "tagname": "cfg",
240       "name": "closeAction",
241       "member": "Ext.panel.Panel",
242       "type": "String",
243       "doc": "<p>The action to take when the close header tool is clicked:\n<div class=\"mdetail-params\"><ul>\n<li><b><code>'<a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>'</code></b> : <b>Default</b><div class=\"sub-desc\">\n<a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">remove</a> the window from the DOM and <a href=\"#/api/Ext.Component-event-destroy\" rel=\"Ext.Component-event-destroy\" class=\"docClass\">destroy</a>\nit and all descendant Components. The window will <b>not</b> be available to be\nredisplayed via the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method.\n</div></li>\n<li><b><code>'<a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a>'</code></b> : <div class=\"sub-desc\">\n<a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a> the window by setting visibility to hidden and applying negative offsets.\nThe window will be available to be redisplayed via the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method.\n</div></li>\n</ul></div>\n<p><b>Note:</b> This behavior has changed! setting *does* affect the <a href=\"#/api/Ext.grid.property.Grid-method-close\" rel=\"Ext.grid.property.Grid-method-close\" class=\"docClass\">close</a> method\nwhich will invoke the approriate closeAction.\n\n",
244       "private": false,
245       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
246       "linenr": 223,
247       "html_filename": "Panel3.html",
248       "href": "Panel3.html#Ext-panel-Panel-cfg-closeAction",
249       "shortDoc": "The action to take when the close header tool is clicked:\n\n'destroy' : Default\nremove the window from the DOM and des..."
250     },
251     {
252       "tagname": "cfg",
253       "name": "cls",
254       "member": "Ext.AbstractComponent",
255       "type": "String",
256       "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",
257       "private": false,
258       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
259       "linenr": 268,
260       "html_filename": "AbstractComponent.html",
261       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-cls",
262       "shortDoc": "An optional extra CSS class that will be added to this component's Element (defaults to '').  This can be\nuseful for ..."
263     },
264     {
265       "tagname": "cfg",
266       "name": "collapseDirection",
267       "member": "Ext.panel.Panel",
268       "type": "Boolean",
269       "doc": "<p>The direction to collapse the Panel when the toggle button is clicked.</p>\n\n\n<p>Defaults to the <a href=\"#/api/Ext.grid.property.Grid-cfg-headerPosition\" rel=\"Ext.grid.property.Grid-cfg-headerPosition\" class=\"docClass\">headerPosition</a></p>\n\n\n<p><b>Important: This config is <u>ignored</u> for <a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> Panels which are direct child items of a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>.</b></p>\n\n\n<p>Specify as <code>'top'</code>, <code>'bottom'</code>, <code>'left'</code> or <code>'right'</code>.</p>\n\n",
270       "private": false,
271       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
272       "linenr": 203,
273       "html_filename": "Panel3.html",
274       "href": "Panel3.html#Ext-panel-Panel-cfg-collapseDirection",
275       "shortDoc": "The direction to collapse the Panel when the toggle button is clicked.\n\n\nDefaults to the headerPosition\n\n\nImportant: ..."
276     },
277     {
278       "tagname": "cfg",
279       "name": "collapseFirst",
280       "member": "Ext.panel.Panel",
281       "type": "Boolean",
282       "doc": "<p><code>true</code> to make sure the collapse/expand toggle button always renders first (to the left of)\nany other tools in the panel&#39;s title bar, <code>false</code> to render it last (defaults to <code>true</code>).</p>\n",
283       "private": false,
284       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
285       "linenr": 136,
286       "html_filename": "Panel3.html",
287       "href": "Panel3.html#Ext-panel-Panel-cfg-collapseFirst",
288       "shortDoc": "true to make sure the collapse/expand toggle button always renders first (to the left of)\nany other tools in the pane..."
289     },
290     {
291       "tagname": "cfg",
292       "name": "collapseMode",
293       "member": "Ext.panel.Panel",
294       "type": "String",
295       "doc": "<p><b>Important: this config is only effective for <a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> Panels which are direct child items of a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>.</b></p>\n\n\n<p>When <i>not</i> a direct child item of a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>, then the Panel&#39;s header remains visible, and the body is collapsed to zero dimensions.\nIf the Panel has no header, then a new header (orientated correctly depending on the <a href=\"#/api/Ext.grid.property.Grid-cfg-collapseDirection\" rel=\"Ext.grid.property.Grid-cfg-collapseDirection\" class=\"docClass\">collapseDirection</a>) will be inserted to show a the title and a re-expand tool.</p>\n\n\n<p>When a child item of a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>, this config has two options:\n<div class=\"mdetail-params\"><ul>\n<li><b><code>undefined/omitted</code></b><div class=\"sub-desc\">When collapsed, a placeholder <a href=\"#/api/Ext.panel.Header\" rel=\"Ext.panel.Header\" class=\"docClass\">Header</a> is injected into the layout to represent the Panel\nand to provide a UI with a Tool to allow the user to re-expand the Panel.</div></li>\n<li><b><code>header</code></b> : <div class=\"sub-desc\">The Panel collapses to leave its header visible as when not inside a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>.</div></li>\n</ul></div></p>\n\n",
296       "private": false,
297       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
298       "linenr": 158,
299       "html_filename": "Panel3.html",
300       "href": "Panel3.html#Ext-panel-Panel-cfg-collapseMode",
301       "shortDoc": "Important: this config is only effective for collapsible Panels which are direct child items of a border layout.\n\n\nWh..."
302     },
303     {
304       "tagname": "cfg",
305       "name": "collapsed",
306       "member": "Ext.panel.Panel",
307       "type": "Boolean",
308       "doc": "<p><code>true</code> to render the panel collapsed, <code>false</code> to render it expanded (defaults to\n<code>false</code>).</p>\n",
309       "private": false,
310       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
311       "linenr": 129,
312       "html_filename": "Panel3.html",
313       "href": "Panel3.html#Ext-panel-Panel-cfg-collapsed"
314     },
315     {
316       "tagname": "cfg",
317       "name": "collapsedCls",
318       "member": "Ext.panel.Panel",
319       "type": "String",
320       "doc": "<p>A CSS class to add to the panel&#39;s element after it has been collapsed (defaults to\n<code>'collapsed'</code>).</p>\n",
321       "private": false,
322       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
323       "linenr": 104,
324       "html_filename": "Panel3.html",
325       "href": "Panel3.html#Ext-panel-Panel-cfg-collapsedCls"
326     },
327     {
328       "tagname": "cfg",
329       "name": "collapsible",
330       "member": "Ext.panel.Panel",
331       "type": "Boolean",
332       "doc": "<p>True to make the panel collapsible and have an expand/collapse toggle Tool added into\nthe header tool button area. False to keep the panel sized either statically, or by an owning layout manager, with no toggle Tool (defaults to false).</p>\n\n\n<p>See <a href=\"#/api/Ext.grid.property.Grid-cfg-collapseMode\" rel=\"Ext.grid.property.Grid-cfg-collapseMode\" class=\"docClass\">collapseMode</a> and <a href=\"#/api/Ext.grid.property.Grid-cfg-collapseDirection\" rel=\"Ext.grid.property.Grid-cfg-collapseDirection\" class=\"docClass\">collapseDirection</a></p>\n",
333       "private": false,
334       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
335       "linenr": 195,
336       "html_filename": "Panel3.html",
337       "href": "Panel3.html#Ext-panel-Panel-cfg-collapsible",
338       "shortDoc": "True to make the panel collapsible and have an expand/collapse toggle Tool added into\nthe header tool button area. Fa..."
339     },
340     {
341       "tagname": "cfg",
342       "name": "columnLines",
343       "member": "Ext.grid.Panel",
344       "type": "Boolean",
345       "doc": "<p>Adds column line styling</p>\n",
346       "private": false,
347       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/Panel.js",
348       "linenr": 346,
349       "html_filename": "Panel2.html",
350       "href": "Panel2.html#Ext-grid-Panel-cfg-columnLines"
351     },
352     {
353       "tagname": "cfg",
354       "name": "columns",
355       "member": "Ext.panel.Table",
356       "type": "Array",
357       "doc": "<p>An array of <a href=\"#/api/Ext.grid.column.Column\" rel=\"Ext.grid.column.Column\" class=\"docClass\">column</a> definition objects which define all columns that appear in this grid. Each\ncolumn definition provides the header text for the column, and a definition of where the data for that column comes from.</p>\n",
358       "private": false,
359       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
360       "linenr": 58,
361       "html_filename": "Table2.html",
362       "href": "Table2.html#Ext-panel-Table-cfg-columns",
363       "shortDoc": "An array of column definition objects which define all columns that appear in this grid. Each\ncolumn definition provi..."
364     },
365     {
366       "tagname": "cfg",
367       "name": "componentCls",
368       "member": "Ext.AbstractComponent",
369       "type": "String",
370       "doc": "<p>CSS Class to be added to a components root level element to give distinction to it\nvia styling.</p>\n",
371       "private": false,
372       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
373       "linenr": 262,
374       "html_filename": "AbstractComponent.html",
375       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentCls"
376     },
377     {
378       "tagname": "cfg",
379       "name": "componentLayout",
380       "member": "Ext.AbstractComponent",
381       "type": "String/Object",
382       "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.grid.property.Grid-method-setSize\" rel=\"Ext.grid.property.Grid-method-setSize\" class=\"docClass\">setSize</a> method.</p>\n\n",
383       "private": false,
384       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
385       "linenr": 221,
386       "html_filename": "AbstractComponent.html",
387       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-componentLayout",
388       "shortDoc": "The sizing and positioning of a Component's internal Elements is the responsibility of\nthe Component's layout manager..."
389     },
390     {
391       "tagname": "cfg",
392       "name": "contentEl",
393       "member": "Ext.AbstractComponent",
394       "type": "String",
395       "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.grid.property.Grid-cfg-html\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-event-render\" rel=\"Ext.grid.property.Grid-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",
396       "private": false,
397       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
398       "linenr": 401,
399       "html_filename": "AbstractComponent.html",
400       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-contentEl",
401       "shortDoc": "Optional. Specify an existing HTML element, or the id of an existing HTML element to use as the content\nfor this comp..."
402     },
403     {
404       "tagname": "cfg",
405       "name": "customEditors",
406       "member": "Ext.grid.property.Grid",
407       "type": "Object",
408       "doc": "<p>An object containing name/value pairs of custom editor type definitions that allow\nthe grid to support additional types of editable fields.  By default, the grid supports strongly-typed editing\nof strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and\nassociated with a custom input control by specifying a custom editor.  The name of the editor\ntype should correspond with the name of the property that will use the editor.  Example usage:</p>\n\n<pre><code>var grid = new Ext.grid.property.Grid({\n\n    // Custom editors for certain property names\n    customEditors: {\n        evtStart: Ext.create('Ext.form.TimeField' {selectOnFocus:true})\n    },\n\n    // Displayed name for property names in the source\n    propertyNames: {\n        evtStart: 'Start Time'\n    },\n\n    // Data object containing properties to edit\n    source: {\n        evtStart: '10:00 AM'\n    }\n});\n</code></pre>\n\n",
409       "private": false,
410       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
411       "linenr": 53,
412       "html_filename": "Grid.html",
413       "href": "Grid.html#Ext-grid-property-Grid-cfg-customEditors",
414       "shortDoc": "An object containing name/value pairs of custom editor type definitions that allow\nthe grid to support additional typ..."
415     },
416     {
417       "tagname": "cfg",
418       "name": "customRenderers",
419       "member": "Ext.grid.property.Grid",
420       "type": "Object",
421       "doc": "<p>An object containing name/value pairs of custom renderer type definitions that allow\nthe grid to support custom rendering of fields.  By default, the grid supports strongly-typed rendering\nof strings, dates, numbers and booleans using built-in form editors, but any custom type can be supported and\nassociated with the type of the value.  The name of the renderer type should correspond with the name of the property\nthat it will render.  Example usage:</p>\n\n<pre><code>var grid = Ext.create('Ext.grid.property.Grid', {\n    customRenderers: {\n        Available: function(v){\n            if (v) {\n                return '<span style=\"color: green;\">Yes</span>';\n            } else {\n                return '<span style=\"color: red;\">No</span>';\n            }\n        }\n    },\n    source: {\n        Available: true\n    }\n});\n</code></pre>\n\n",
422       "private": false,
423       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
424       "linenr": 84,
425       "html_filename": "Grid.html",
426       "href": "Grid.html#Ext-grid-property-Grid-cfg-customRenderers",
427       "shortDoc": "An object containing name/value pairs of custom renderer type definitions that allow\nthe grid to support custom rende..."
428     },
429     {
430       "tagname": "cfg",
431       "name": "data",
432       "member": "Ext.AbstractComponent",
433       "type": "Mixed",
434       "doc": "<p>The initial set of data to apply to the <code><a href=\"#/api/Ext.grid.property.Grid-cfg-tpl\" rel=\"Ext.grid.property.Grid-cfg-tpl\" class=\"docClass\">tpl</a></code> to\nupdate the content area of the Component.</p>\n",
435       "private": false,
436       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
437       "linenr": 239,
438       "html_filename": "AbstractComponent.html",
439       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-data"
440     },
441     {
442       "tagname": "cfg",
443       "name": "defaultType",
444       "member": "Ext.container.AbstractContainer",
445       "type": "String",
446       "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",
447       "private": false,
448       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
449       "linenr": 168,
450       "html_filename": "AbstractContainer.html",
451       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-defaultType",
452       "shortDoc": "The default xtype of child Components to create in this Container when\na child item is specified as a raw configurati..."
453     },
454     {
455       "tagname": "cfg",
456       "name": "defaults",
457       "member": "Ext.container.AbstractContainer",
458       "type": "Object|Function",
459       "doc": "<p>This option is a means of applying default settings to all added items whether added through the <a href=\"#/api/Ext.grid.property.Grid-property-items\" rel=\"Ext.grid.property.Grid-property-items\" class=\"docClass\">items</a>\nconfig or via the <a href=\"#/api/Ext.grid.property.Grid-event-add\" rel=\"Ext.grid.property.Grid-event-add\" class=\"docClass\">add</a> or <a href=\"#/api/Ext.grid.property.Grid-method-insert\" rel=\"Ext.grid.property.Grid-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",
460       "private": false,
461       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
462       "linenr": 126,
463       "html_filename": "AbstractContainer.html",
464       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-defaults",
465       "shortDoc": "This option is a means of applying default settings to all added items whether added through the items\nconfig or via ..."
466     },
467     {
468       "tagname": "cfg",
469       "name": "disabled",
470       "member": "Ext.AbstractComponent",
471       "type": "Boolean",
472       "doc": "<p>Defaults to false.</p>\n",
473       "private": false,
474       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
475       "linenr": 363,
476       "html_filename": "AbstractComponent.html",
477       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabled"
478     },
479     {
480       "tagname": "cfg",
481       "name": "disabledCls",
482       "member": "Ext.AbstractComponent",
483       "type": "String",
484       "doc": "<p>CSS class to add when the Component is disabled. Defaults to 'x-item-disabled'.</p>\n",
485       "private": false,
486       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
487       "linenr": 281,
488       "html_filename": "AbstractComponent.html",
489       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-disabledCls"
490     },
491     {
492       "tagname": "cfg",
493       "name": "dockedItems",
494       "member": "Ext.panel.Panel",
495       "type": "Object/Array",
496       "doc": "<p>A component or series of components to be added as docked items to this panel.\nThe docked items can be docked to either the top, right, left or bottom of a panel.\nThis is typically used for things like toolbars or tab bars:</p>\n\n<pre><code>var panel = new Ext.panel.Panel({\n    dockedItems: [{\n        xtype: 'toolbar',\n        dock: 'top',\n        items: [{\n            text: 'Docked to the top'\n        }]\n    }]\n});</pre>\n\n\n<p></code></p>\n",
497       "private": false,
498       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
499       "linenr": 242,
500       "html_filename": "Panel3.html",
501       "href": "Panel3.html#Ext-panel-Panel-cfg-dockedItems",
502       "shortDoc": "A component or series of components to be added as docked items to this panel.\nThe docked items can be docked to eith..."
503     },
504     {
505       "tagname": "cfg",
506       "name": "draggable",
507       "member": "Ext.Component",
508       "type": "Mixed",
509       "doc": "<p>Specify as true to make a <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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",
510       "private": false,
511       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
512       "linenr": 234,
513       "html_filename": "Component.html",
514       "href": "Component.html#Ext-Component-cfg-draggable",
515       "shortDoc": "Specify as true to make a floating Component draggable using the Component's encapsulating element as the drag handle..."
516     },
517     {
518       "tagname": "cfg",
519       "name": "fbar",
520       "member": "Ext.panel.Panel",
521       "type": "Object/Array",
522       "doc": "<p>Convenience method used for adding items to the bottom right of the panel. Short for Footer Bar.</p>\n\n<pre><code>fbar: [\n  { type: 'button', text: 'Button 1' }\n]\n</code></pre>\n\n<p>is equivalent to</p>\n\n<pre><code>dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'bottom',\n    defaults: {minWidth: <a href=\"#/api/Ext.grid.property.Grid-cfg-minButtonWidth\" rel=\"Ext.grid.property.Grid-cfg-minButtonWidth\" class=\"docClass\">minButtonWidth</a>},\n    items: [\n        { xtype: 'component', flex: 1 },\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n</code></pre>\n\n<p>The <a href=\"#/api/Ext.grid.property.Grid-cfg-minButtonWidth\" rel=\"Ext.grid.property.Grid-cfg-minButtonWidth\" class=\"docClass\">minButtonWidth</a> is used as the default <a href=\"#/api/Ext.button.Button-cfg-minWidth\" rel=\"Ext.button.Button-cfg-minWidth\" class=\"docClass\">minWidth</a> for\neach of the buttons in the fbar.</p>\n",
523       "private": false,
524       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
525       "linenr": 541,
526       "html_filename": "Panel3.html",
527       "href": "Panel3.html#Ext-panel-Panel-cfg-fbar",
528       "shortDoc": "Convenience method used for adding items to the bottom right of the panel. Short for Footer Bar.\n\nfbar: [\n  { type: '..."
529     },
530     {
531       "tagname": "cfg",
532       "name": "floatable",
533       "member": "Ext.panel.Panel",
534       "type": "Boolean",
535       "doc": "<p><b>Important: This config is only effective for <a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> Panels which are direct child items of a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>.</b></p>\n\n\n<p><tt>true</tt> to allow clicking a collapsed Panel&#39;s <a href=\"#/api/Ext.grid.property.Grid-cfg-placeholder\" rel=\"Ext.grid.property.Grid-cfg-placeholder\" class=\"docClass\">placeholder</a> to display the Panel floated\nabove the layout, <tt>false</tt> to force the user to fully expand a collapsed region by\nclicking the expand button to see it again (defaults to <tt>true</tt>).</p>\n",
536       "private": false,
537       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
538       "linenr": 180,
539       "html_filename": "Panel3.html",
540       "href": "Panel3.html#Ext-panel-Panel-cfg-floatable",
541       "shortDoc": "Important: This config is only effective for collapsible Panels which are direct child items of a border layout.\n\n\ntr..."
542     },
543     {
544       "tagname": "cfg",
545       "name": "floating",
546       "member": "Ext.Component",
547       "type": "Boolean",
548       "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.grid.property.Grid-method-toFront\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-property-ownerCt\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-property-floatParent\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-property-floatParent\" rel=\"Ext.grid.property.Grid-property-floatParent\" class=\"docClass\">floatParent</a> property will not be set.</p>\n\n",
549       "private": false,
550       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
551       "linenr": 175,
552       "html_filename": "Component.html",
553       "href": "Component.html#Ext-Component-cfg-floating",
554       "shortDoc": "Specify as true to float the Component outside of the document flow using CSS absolute positioning.\n\n\nComponents such..."
555     },
556     {
557       "tagname": "cfg",
558       "name": "focusOnToFront",
559       "member": "Ext.util.Floating",
560       "type": "Boolean",
561       "doc": "<p>Specifies whether the floated component should be automatically <a href=\"#/api/Ext.grid.property.Grid-method-focus\" rel=\"Ext.grid.property.Grid-method-focus\" class=\"docClass\">focused</a> when it is\n<a href=\"#/api/Ext.grid.property.Grid-method-toFront\" rel=\"Ext.grid.property.Grid-method-toFront\" class=\"docClass\">brought to the front</a>. Defaults to true.</p>\n",
562       "private": false,
563       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
564       "linenr": 9,
565       "html_filename": "Floating.html",
566       "href": "Floating.html#Ext-util-Floating-cfg-focusOnToFront",
567       "shortDoc": "Specifies whether the floated component should be automatically focused when it is\nbrought to the front. Defaults to ..."
568     },
569     {
570       "tagname": "cfg",
571       "name": "forceFit",
572       "member": "Ext.panel.Table",
573       "type": "Boolean",
574       "doc": "<p>Specify as <code>true</code> to force the columns to fit into the available width. Headers are first sized according to configuration, whether that be\na specific width, or flex. Then they are all proportionally changed in width so that the entire content width is used..</p>\n",
575       "private": false,
576       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
577       "linenr": 64,
578       "html_filename": "Table2.html",
579       "href": "Table2.html#Ext-panel-Table-cfg-forceFit",
580       "shortDoc": "Specify as true to force the columns to fit into the available width. Headers are first sized according to configurat..."
581     },
582     {
583       "tagname": "cfg",
584       "name": "frame",
585       "member": "Ext.panel.Panel",
586       "type": "Boolean",
587       "doc": "<p>True to apply a frame to the panel.</p>\n",
588       "private": false,
589       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
590       "linenr": 269,
591       "html_filename": "Panel3.html",
592       "href": "Panel3.html#Ext-panel-Panel-cfg-frame"
593     },
594     {
595       "tagname": "cfg",
596       "name": "frameHeader",
597       "member": "Ext.panel.Panel",
598       "type": "Boolean",
599       "doc": "<p>True to apply a frame to the panel panels header (if 'frame' is true).</p>\n",
600       "private": false,
601       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
602       "linenr": 275,
603       "html_filename": "Panel3.html",
604       "href": "Panel3.html#Ext-panel-Panel-cfg-frameHeader"
605     },
606     {
607       "tagname": "cfg",
608       "name": "headerPosition",
609       "member": "Ext.panel.Panel",
610       "type": "String",
611       "doc": "<p>Specify as <code>'top'</code>, <code>'bottom'</code>, <code>'left'</code> or <code>'right'</code>. Defaults to <code>'top'</code>.</p>\n",
612       "private": false,
613       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
614       "linenr": 264,
615       "html_filename": "Panel3.html",
616       "href": "Panel3.html#Ext-panel-Panel-cfg-headerPosition"
617     },
618     {
619       "tagname": "cfg",
620       "name": "height",
621       "member": "Ext.AbstractComponent",
622       "type": "Number",
623       "doc": "<p>The height of this component in pixels.</p>\n",
624       "private": false,
625       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
626       "linenr": 334,
627       "html_filename": "AbstractComponent.html",
628       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-height"
629     },
630     {
631       "tagname": "cfg",
632       "name": "hidden",
633       "member": "Ext.AbstractComponent",
634       "type": "Boolean",
635       "doc": "<p>Defaults to false.</p>\n",
636       "private": false,
637       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
638       "linenr": 357,
639       "html_filename": "AbstractComponent.html",
640       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hidden"
641     },
642     {
643       "tagname": "cfg",
644       "name": "hideCollapseTool",
645       "member": "Ext.panel.Panel",
646       "type": "Boolean",
647       "doc": "<p><code>true</code> to hide the expand/collapse toggle button when <code><a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> == true</code>,\n<code>false</code> to display it (defaults to <code>false</code>).</p>\n",
648       "private": false,
649       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
650       "linenr": 143,
651       "html_filename": "Panel3.html",
652       "href": "Panel3.html#Ext-panel-Panel-cfg-hideCollapseTool"
653     },
654     {
655       "tagname": "cfg",
656       "name": "hideHeaders",
657       "member": "Ext.panel.Table",
658       "type": "Boolean",
659       "doc": "<p>Specify as <code>true</code> to hide the headers.</p>\n",
660       "private": false,
661       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
662       "linenr": 70,
663       "html_filename": "Table2.html",
664       "href": "Table2.html#Ext-panel-Table-cfg-hideHeaders"
665     },
666     {
667       "tagname": "cfg",
668       "name": "hideMode",
669       "member": "Ext.AbstractComponent",
670       "type": "String",
671       "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",
672       "private": false,
673       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
674       "linenr": 388,
675       "html_filename": "AbstractComponent.html",
676       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-hideMode",
677       "shortDoc": "A String which specifies how this Component's encapsulating DOM element will be hidden.\nValues may be\n'display' : The..."
678     },
679     {
680       "tagname": "cfg",
681       "name": "html",
682       "member": "Ext.AbstractComponent",
683       "type": "String/Object",
684       "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.grid.property.Grid-event-render\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-contentEl\" rel=\"Ext.grid.property.Grid-cfg-contentEl\" class=\"docClass\">contentEl</a> is appended.</p>\n",
685       "private": false,
686       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
687       "linenr": 419,
688       "html_filename": "AbstractComponent.html",
689       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-html",
690       "shortDoc": "An HTML fragment, or a DomHelper specification to use as the layout element\ncontent (defaults to ''). The HTML conten..."
691     },
692     {
693       "tagname": "cfg",
694       "name": "id",
695       "member": "Ext.AbstractComponent",
696       "type": "String",
697       "doc": "<p>The <b><u>unique id of this component instance</u></b> (defaults to an <a href=\"#/api/Ext.grid.property.Grid-method-getId\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-itemId\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-itemId\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-property-ownerCt\" rel=\"Ext.grid.property.Grid-property-ownerCt\" class=\"docClass\">ownerCt</a></code>.</p>\n\n",
698       "private": false,
699       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
700       "linenr": 50,
701       "html_filename": "AbstractComponent.html",
702       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-id",
703       "shortDoc": "The unique id of this component instance (defaults to an auto-assigned id).\n\n\nIt should not be necessary to use this ..."
704     },
705     {
706       "tagname": "cfg",
707       "name": "itemId",
708       "member": "Ext.AbstractComponent",
709       "type": "String",
710       "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.grid.property.Grid-cfg-id\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-id\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-id\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-renderTo\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-property-ownerCt\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-id\" rel=\"Ext.grid.property.Grid-cfg-id\" class=\"docClass\">id</a></tt>, <code><a href=\"#/api/Ext.grid.property.Grid-method-query\" rel=\"Ext.grid.property.Grid-method-query\" class=\"docClass\">query</a></code>, <code><a href=\"#/api/Ext.grid.property.Grid-method-down\" rel=\"Ext.grid.property.Grid-method-down\" class=\"docClass\">down</a></code> and <code><a href=\"#/api/Ext.grid.property.Grid-method-child\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-property-ownerCt\" rel=\"Ext.grid.property.Grid-property-ownerCt\" class=\"docClass\">ownerCt</a></tt>.</p>\n\n",
711       "private": false,
712       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
713       "linenr": 66,
714       "html_filename": "AbstractComponent.html",
715       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-itemId",
716       "shortDoc": "An itemId can be used as an alternative way to get a reference to a component\nwhen no object reference is available. ..."
717     },
718     {
719       "tagname": "cfg",
720       "name": "items",
721       "member": "Ext.container.AbstractContainer",
722       "type": "Object/Array",
723       "doc": "<p>A single item, or an array of child Components to be added to this container</p>\n\n\n<p><b>Unless configured with a <a href=\"#/api/Ext.grid.property.Grid-cfg-layout\" rel=\"Ext.grid.property.Grid-cfg-layout\" class=\"docClass\">layout</a>, a Container simply renders child Components serially into\nits encapsulating element and performs no sizing or positioning upon them.</b><p>\n<p>Example:</p>\n<pre><code>// specifying a single item\nitems: {...},\nlayout: 'fit',    // The single items is sized to fit\n\n// specifying multiple items\nitems: [{...}, {...}],\nlayout: 'hbox', // The items are arranged horizontally\n       </code></pre>\n<p>Each item may be:</p>\n<ul>\n<li>A <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a></li>\n<li>A Component configuration object</li>\n</ul>\n<p>If a configuration object is specified, the actual type of Component to be\ninstantiated my be indicated by using the <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">xtype</a> option.</p>\n<p>Every Component class has its own <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">xtype</a>.</p>\n<p>If an <a href=\"#/api/Ext.Component--xtype\" rel=\"Ext.Component--xtype\" class=\"docClass\">xtype</a> is not explicitly\nspecified, the <a href=\"#/api/Ext.grid.property.Grid-cfg-defaultType\" rel=\"Ext.grid.property.Grid-cfg-defaultType\" class=\"docClass\">defaultType</a> for the Container is used, which by default is usually <code>panel</code>.</p>\n<p><b>Notes</b>:</p>\n<p>Ext uses lazy rendering. Child Components will only be rendered\nshould it become necessary. Items are automatically laid out when they are first\nshown (no sizing is done while hidden), or in response to a <a href=\"#/api/Ext.grid.property.Grid-method-doLayout\" rel=\"Ext.grid.property.Grid-method-doLayout\" class=\"docClass\">doLayout</a> call.</p>\n<p>Do not specify <code><a href=\"#/api/Ext.panel.Panel-cfg-contentEl\" rel=\"Ext.panel.Panel-cfg-contentEl\" class=\"docClass\">contentEl</a></code> or \n<code><a href=\"#/api/Ext.panel.Panel-cfg-html\" rel=\"Ext.panel.Panel-cfg-html\" class=\"docClass\">html</a></code> with <code>items</code>.</p>\n\n",
724       "private": false,
725       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
726       "linenr": 94,
727       "html_filename": "AbstractContainer.html",
728       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-items",
729       "shortDoc": "A single item, or an array of child Components to be added to this container\n\n\nUnless configured with a layout, a Con..."
730     },
731     {
732       "tagname": "cfg",
733       "name": "layout",
734       "member": "Ext.container.AbstractContainer",
735       "type": "String/Object",
736       "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.grid.property.Grid-property-items\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-layout\" rel=\"Ext.grid.property.Grid-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",
737       "private": false,
738       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
739       "linenr": 20,
740       "html_filename": "AbstractContainer.html",
741       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-layout",
742       "shortDoc": "*Important: In order for child items to be correctly sized and\npositioned, typically a layout manager must be specifi..."
743     },
744     {
745       "tagname": "cfg",
746       "name": "lbar",
747       "member": "Ext.panel.Panel",
748       "type": "Object/Array",
749       "doc": "<p>Convenience method. Short for 'Left Bar' (left-docked, vertical toolbar).</p>\n\n<p>   lbar: [</p>\n\n<pre><code> { xtype: 'button', text: 'Button 1' }\n</code></pre>\n\n<p>   ]</p>\n\n<p>is equivalent to</p>\n\n<p>   dockedItems: [{</p>\n\n<pre><code>   xtype: 'toolbar',\n   dock: 'left',\n   items: [\n       { xtype: 'button', text: 'Button 1' }\n   ]\n</code></pre>\n\n<p>   }]</p>\n",
750       "private": false,
751       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
752       "linenr": 593,
753       "html_filename": "Panel3.html",
754       "href": "Panel3.html#Ext-panel-Panel-cfg-lbar",
755       "shortDoc": "Convenience method. Short for 'Left Bar' (left-docked, vertical toolbar).\n\n   lbar: [\n\n { xtype: 'button', text: 'But..."
756     },
757     {
758       "tagname": "cfg",
759       "name": "listeners",
760       "member": "Ext.util.Observable",
761       "type": "Object",
762       "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.grid.property.Grid-method-addListener\" rel=\"Ext.grid.property.Grid-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",
763       "private": false,
764       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
765       "linenr": 103,
766       "html_filename": "Observable.html",
767       "href": "Observable.html#Ext-util-Observable-cfg-listeners",
768       "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization.  T..."
769     },
770     {
771       "tagname": "cfg",
772       "name": "loader",
773       "member": "Ext.AbstractComponent",
774       "type": "Ext.ComponentLoader/Object",
775       "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",
776       "private": false,
777       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
778       "linenr": 462,
779       "html_filename": "AbstractComponent.html",
780       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-loader"
781     },
782     {
783       "tagname": "cfg",
784       "name": "maintainFlex",
785       "member": "Ext.Component",
786       "type": "Boolean",
787       "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",
788       "private": false,
789       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
790       "linenr": 256,
791       "html_filename": "Component.html",
792       "href": "Component.html#Ext-Component-cfg-maintainFlex",
793       "shortDoc": "Only valid when a sibling element of a Splitter within a VBox or\nHBox layout.\n\n\nSpecifies that if an immediate siblin..."
794     },
795     {
796       "tagname": "cfg",
797       "name": "margin",
798       "member": "Ext.AbstractComponent",
799       "type": "Number/String",
800       "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",
801       "private": false,
802       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
803       "linenr": 351,
804       "html_filename": "AbstractComponent.html",
805       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-margin",
806       "shortDoc": "Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or\nit can be ..."
807     },
808     {
809       "tagname": "cfg",
810       "name": "maxHeight",
811       "member": "Ext.AbstractComponent",
812       "type": "Number",
813       "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",
814       "private": false,
815       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
816       "linenr": 451,
817       "html_filename": "AbstractComponent.html",
818       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxHeight",
819       "shortDoc": "The maximum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..."
820     },
821     {
822       "tagname": "cfg",
823       "name": "maxWidth",
824       "member": "Ext.AbstractComponent",
825       "type": "Number",
826       "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",
827       "private": false,
828       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
829       "linenr": 456,
830       "html_filename": "AbstractComponent.html",
831       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-maxWidth",
832       "shortDoc": "The maximum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..."
833     },
834     {
835       "tagname": "cfg",
836       "name": "minButtonWidth",
837       "member": "Ext.panel.Panel",
838       "type": "Number",
839       "doc": "<p>Minimum width of all footer toolbar buttons in pixels (defaults to <tt>75</tt>). If set, this will\nbe used as the default value for the <tt><a href=\"#/api/Ext.button.Button-cfg-minWidth\" rel=\"Ext.button.Button-cfg-minWidth\" class=\"docClass\">Ext.button.Button.minWidth</a></tt> config of\neach Button added to the <b>footer toolbar</b> via the <a href=\"#/api/Ext.grid.property.Grid-cfg-fbar\" rel=\"Ext.grid.property.Grid-cfg-fbar\" class=\"docClass\">fbar</a> or <a href=\"#/api/Ext.grid.property.Grid-cfg-buttons\" rel=\"Ext.grid.property.Grid-cfg-buttons\" class=\"docClass\">buttons</a> configurations.\nIt will be ignored for buttons that have a minWidth configured some other way, e.g. in their own config\nobject or via the <a href=\"#/api/Ext.container.Container--config-defaults\" rel=\"Ext.container.Container--config-defaults\" class=\"docClass\">defaults</a> of their parent container.</p>\n",
840       "private": false,
841       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
842       "linenr": 119,
843       "html_filename": "Panel3.html",
844       "href": "Panel3.html#Ext-panel-Panel-cfg-minButtonWidth",
845       "shortDoc": "Minimum width of all footer toolbar buttons in pixels (defaults to 75). If set, this will\nbe used as the default valu..."
846     },
847     {
848       "tagname": "cfg",
849       "name": "minHeight",
850       "member": "Ext.AbstractComponent",
851       "type": "Number",
852       "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",
853       "private": false,
854       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
855       "linenr": 441,
856       "html_filename": "AbstractComponent.html",
857       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minHeight",
858       "shortDoc": "The minimum value in pixels which this Component will set its height to.\n\n\nWarning: This will override any size manag..."
859     },
860     {
861       "tagname": "cfg",
862       "name": "minWidth",
863       "member": "Ext.AbstractComponent",
864       "type": "Number",
865       "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",
866       "private": false,
867       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
868       "linenr": 446,
869       "html_filename": "AbstractComponent.html",
870       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-minWidth",
871       "shortDoc": "The minimum value in pixels which this Component will set its width to.\n\n\nWarning: This will override any size manage..."
872     },
873     {
874       "tagname": "cfg",
875       "name": "nameField",
876       "member": "Ext.grid.property.Grid",
877       "type": "String",
878       "doc": "<p>Optional. The name of the field from the property store to use as the property field name. Defaults to <code>'name'</code>\nThis may be useful if you do not configure the property Grid from an object, but use your own store configuration.</p>\n",
879       "private": false,
880       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
881       "linenr": 115,
882       "html_filename": "Grid.html",
883       "href": "Grid.html#Ext-grid-property-Grid-cfg-nameField",
884       "shortDoc": "Optional. The name of the field from the property store to use as the property field name. Defaults to 'name'\nThis ma..."
885     },
886     {
887       "tagname": "cfg",
888       "name": "overCls",
889       "member": "Ext.AbstractComponent",
890       "type": "String",
891       "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",
892       "private": false,
893       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
894       "linenr": 274,
895       "html_filename": "AbstractComponent.html",
896       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-overCls",
897       "shortDoc": "An optional extra CSS class that will be added to this component's Element when the mouse moves\nover the Element, and..."
898     },
899     {
900       "tagname": "cfg",
901       "name": "overlapHeader",
902       "member": "Ext.panel.Panel",
903       "type": "Mixed",
904       "doc": "<p>True to overlap the header in a panel over the framing of the panel itself. This is needed when frame:true (and is done automatically for you). Otherwise it is undefined.\nIf you manually add rounded corners to a panel header which does not have frame:true, this will need to be set to true.</p>\n",
905       "private": false,
906       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
907       "linenr": 189,
908       "html_filename": "Panel3.html",
909       "href": "Panel3.html#Ext-panel-Panel-cfg-overlapHeader",
910       "shortDoc": "True to overlap the header in a panel over the framing of the panel itself. This is needed when frame:true (and is do..."
911     },
912     {
913       "tagname": "cfg",
914       "name": "padding",
915       "member": "Ext.AbstractComponent",
916       "type": "Number/String",
917       "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",
918       "private": false,
919       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
920       "linenr": 345,
921       "html_filename": "AbstractComponent.html",
922       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-padding",
923       "shortDoc": "Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or\nit can b..."
924     },
925     {
926       "tagname": "cfg",
927       "name": "placeholder",
928       "member": "Ext.panel.Panel",
929       "type": "Mixed",
930       "doc": "<p><b>Important: This config is only effective for <a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> Panels which are direct child items of a <a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>\nwhen not using the <code>'header'</code> <a href=\"#/api/Ext.grid.property.Grid-cfg-collapseMode\" rel=\"Ext.grid.property.Grid-cfg-collapseMode\" class=\"docClass\">collapseMode</a>.</b></p>\n\n\n<p><b>Optional.</b> A Component (or config object for a Component) to show in place of this Panel when this Panel is collapsed by a\n<a href=\"#/api/Ext.layout.container.Border\" rel=\"Ext.layout.container.Border\" class=\"docClass\">border layout</a>. Defaults to a generated <a href=\"#/api/Ext.panel.Header\" rel=\"Ext.panel.Header\" class=\"docClass\">Header</a>\ncontaining a <a href=\"#/api/Ext.panel.Tool\" rel=\"Ext.panel.Tool\" class=\"docClass\">Tool</a> to re-expand the Panel.</p>\n\n",
931       "private": false,
932       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
933       "linenr": 171,
934       "html_filename": "Panel3.html",
935       "href": "Panel3.html#Ext-panel-Panel-cfg-placeholder",
936       "shortDoc": "Important: This config is only effective for collapsible Panels which are direct child items of a border layout\nwhen ..."
937     },
938     {
939       "tagname": "cfg",
940       "name": "plugins",
941       "member": "Ext.AbstractComponent",
942       "type": "Object/Array",
943       "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",
944       "private": false,
945       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
946       "linenr": 491,
947       "html_filename": "AbstractComponent.html",
948       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-plugins",
949       "shortDoc": "An object or array of objects that will provide custom functionality for this component.  The only\nrequirement for a ..."
950     },
951     {
952       "tagname": "cfg",
953       "name": "preventHeader",
954       "member": "Ext.panel.Panel",
955       "type": "Boolean",
956       "doc": "<p>Prevent a Header from being created and shown. Defaults to false.</p>\n",
957       "private": false,
958       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
959       "linenr": 259,
960       "html_filename": "Panel3.html",
961       "href": "Panel3.html#Ext-panel-Panel-cfg-preventHeader"
962     },
963     {
964       "tagname": "cfg",
965       "name": "propertyNames",
966       "member": "Ext.grid.property.Grid",
967       "type": "Object",
968       "doc": "<p>An object containing custom property name/display name pairs.\nIf specified, the display name will be shown in the name column instead of the property name.</p>\n",
969       "private": false,
970       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
971       "linenr": 44,
972       "html_filename": "Grid.html",
973       "href": "Grid.html#Ext-grid-property-Grid-cfg-propertyNames",
974       "shortDoc": "An object containing custom property name/display name pairs.\nIf specified, the display name will be shown in the nam..."
975     },
976     {
977       "tagname": "cfg",
978       "name": "rbar",
979       "member": "Ext.panel.Panel",
980       "type": "Object/Array",
981       "doc": "<p>Convenience method. Short for 'Right Bar' (right-docked, vertical toolbar).</p>\n\n<p>   rbar: [</p>\n\n<pre><code> { xtype: 'button', text: 'Button 1' }\n</code></pre>\n\n<p>   ]</p>\n\n<p>is equivalent to</p>\n\n<p>   dockedItems: [{</p>\n\n<pre><code>   xtype: 'toolbar',\n   dock: 'right',\n   items: [\n       { xtype: 'button', text: 'Button 1' }\n   ]\n</code></pre>\n\n<p>   }]</p>\n",
982       "private": false,
983       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
984       "linenr": 619,
985       "html_filename": "Panel3.html",
986       "href": "Panel3.html#Ext-panel-Panel-cfg-rbar",
987       "shortDoc": "Convenience method. Short for 'Right Bar' (right-docked, vertical toolbar).\n\n   rbar: [\n\n { xtype: 'button', text: 'B..."
988     },
989     {
990       "tagname": "cfg",
991       "name": "renderSelectors",
992       "member": "Ext.AbstractComponent",
993       "type": "Object",
994       "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.grid.property.Grid-cfg-renderTpl\" rel=\"Ext.grid.property.Grid-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",
995       "private": false,
996       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
997       "linenr": 158,
998       "html_filename": "AbstractComponent.html",
999       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderSelectors",
1000       "shortDoc": "An object containing properties specifying DomQuery selectors which identify child elements\ncreated by the render pro..."
1001     },
1002     {
1003       "tagname": "cfg",
1004       "name": "renderTo",
1005       "member": "Ext.AbstractComponent",
1006       "type": "Mixed",
1007       "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.grid.property.Grid-event-render\" rel=\"Ext.grid.property.Grid-event-render\" class=\"docClass\">render</a></code> also.</p>\n\n",
1008       "private": false,
1009       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1010       "linenr": 183,
1011       "html_filename": "AbstractComponent.html",
1012       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTo",
1013       "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..."
1014     },
1015     {
1016       "tagname": "cfg",
1017       "name": "renderTpl",
1018       "member": "Ext.AbstractComponent",
1019       "type": "Mixed",
1020       "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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-renderSelectors\" rel=\"Ext.grid.property.Grid-cfg-renderSelectors\" class=\"docClass\">renderSelectors</a> option.</p>\n\n",
1021       "private": false,
1022       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1023       "linenr": 143,
1024       "html_filename": "AbstractComponent.html",
1025       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-renderTpl",
1026       "shortDoc": "An XTemplate used to create the internal structure inside this Component's\nencapsulating Element.\n\n\nYou do not normal..."
1027     },
1028     {
1029       "tagname": "cfg",
1030       "name": "resizable",
1031       "member": "Ext.Component",
1032       "type": "Mixed",
1033       "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",
1034       "private": false,
1035       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1036       "linenr": 154,
1037       "html_filename": "Component.html",
1038       "href": "Component.html#Ext-Component-cfg-resizable",
1039       "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..."
1040     },
1041     {
1042       "tagname": "cfg",
1043       "name": "resizeHandles",
1044       "member": "Ext.Component",
1045       "type": "String",
1046       "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",
1047       "private": false,
1048       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1049       "linenr": 163,
1050       "html_filename": "Component.html",
1051       "href": "Component.html#Ext-Component-cfg-resizeHandles"
1052     },
1053     {
1054       "tagname": "cfg",
1055       "name": "saveBuffer",
1056       "member": "Ext.state.Stateful",
1057       "type": "Number",
1058       "doc": "<p>A buffer to be applied if many state events are fired within\na short period. Defaults to 100.</p>\n",
1059       "private": false,
1060       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1061       "linenr": 74,
1062       "html_filename": "Stateful.html",
1063       "href": "Stateful.html#Ext-state-Stateful-cfg-saveBuffer"
1064     },
1065     {
1066       "tagname": "cfg",
1067       "name": "scroll",
1068       "member": "Ext.panel.Table",
1069       "type": "String/Boolean",
1070       "doc": "<p>Valid values are 'both', 'horizontal' or 'vertical'. true implies 'both'. false implies 'none'.\nDefaults to true.</p>\n",
1071       "private": false,
1072       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
1073       "linenr": 51,
1074       "html_filename": "Table2.html",
1075       "href": "Table2.html#Ext-panel-Table-cfg-scroll"
1076     },
1077     {
1078       "tagname": "cfg",
1079       "name": "scrollDelta",
1080       "member": "Ext.panel.Table",
1081       "type": "Number",
1082       "doc": "<p>Number of pixels to scroll when scrolling with mousewheel.\nDefaults to 40.</p>\n",
1083       "private": false,
1084       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
1085       "linenr": 44,
1086       "html_filename": "Table2.html",
1087       "href": "Table2.html#Ext-panel-Table-cfg-scrollDelta"
1088     },
1089     {
1090       "tagname": "cfg",
1091       "name": "shadow",
1092       "member": "Ext.util.Floating",
1093       "type": "String/Boolean",
1094       "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",
1095       "private": false,
1096       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1097       "linenr": 16,
1098       "html_filename": "Floating.html",
1099       "href": "Floating.html#Ext-util-Floating-cfg-shadow",
1100       "shortDoc": "Specifies whether the floating component should be given a shadow. Set to\ntrue to automatically create an Ext.Shadow,..."
1101     },
1102     {
1103       "tagname": "cfg",
1104       "name": "sortableColumns",
1105       "member": "Ext.panel.Table",
1106       "type": "Boolean",
1107       "doc": "<p>Defaults to true. Set to false to disable column sorting via clicking the\nheader and via the Sorting menu items.</p>\n",
1108       "private": false,
1109       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
1110       "linenr": 75,
1111       "html_filename": "Table2.html",
1112       "href": "Table2.html#Ext-panel-Table-cfg-sortableColumns"
1113     },
1114     {
1115       "tagname": "cfg",
1116       "name": "source",
1117       "member": "Ext.grid.property.Grid",
1118       "type": "Object",
1119       "doc": "<p>A data object to use as the data source of the grid (see <a href=\"#/api/Ext.grid.property.Grid-method-setSource\" rel=\"Ext.grid.property.Grid-method-setSource\" class=\"docClass\">setSource</a> for details).</p>\n",
1120       "private": false,
1121       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
1122       "linenr": 80,
1123       "html_filename": "Grid.html",
1124       "href": "Grid.html#Ext-grid-property-Grid-cfg-source"
1125     },
1126     {
1127       "tagname": "cfg",
1128       "name": "stateEvents",
1129       "member": "Ext.state.Stateful",
1130       "type": "Array",
1131       "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.grid.property.Grid-cfg-stateful\" rel=\"Ext.grid.property.Grid-cfg-stateful\" class=\"docClass\">stateful</a></code> for an explanation of saving and\nrestoring object state.</p>\n\n",
1132       "private": false,
1133       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1134       "linenr": 64,
1135       "html_filename": "Stateful.html",
1136       "href": "Stateful.html#Ext-state-Stateful-cfg-stateEvents",
1137       "shortDoc": "An array of events that, when fired, should trigger this object to\nsave its state (defaults to none). stateEvents may..."
1138     },
1139     {
1140       "tagname": "cfg",
1141       "name": "stateId",
1142       "member": "Ext.state.Stateful",
1143       "type": "String",
1144       "doc": "<p>The unique id for this object to use for state management purposes.</p>\n\n<p>See <a href=\"#/api/Ext.grid.property.Grid-cfg-stateful\" rel=\"Ext.grid.property.Grid-cfg-stateful\" class=\"docClass\">stateful</a> for an explanation of saving and restoring state.</p>\n\n",
1145       "private": false,
1146       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1147       "linenr": 58,
1148       "html_filename": "Stateful.html",
1149       "href": "Stateful.html#Ext-state-Stateful-cfg-stateId",
1150       "shortDoc": "The unique id for this object to use for state management purposes.\n\nSee stateful for an explanation of saving and re..."
1151     },
1152     {
1153       "tagname": "cfg",
1154       "name": "stateful",
1155       "member": "Ext.state.Stateful",
1156       "type": "Boolean",
1157       "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.grid.property.Grid-cfg-stateId\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-stateEvents\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-method-getState\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-stateId\" rel=\"Ext.grid.property.Grid-cfg-stateId\" class=\"docClass\">stateId</a></code></p>\n<p>The resulting object is passed to <b><code><a href=\"#/api/Ext.grid.property.Grid-method-applyState\" rel=\"Ext.grid.property.Grid-method-applyState\" class=\"docClass\">applyState</a></code></b>.\nThe default implementation of <code><a href=\"#/api/Ext.grid.property.Grid-method-applyState\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-event-beforestaterestore\" rel=\"Ext.grid.property.Grid-event-beforestaterestore\" class=\"docClass\">beforestaterestore</a>, <a href=\"#/api/Ext.grid.property.Grid-event-staterestore\" rel=\"Ext.grid.property.Grid-event-staterestore\" class=\"docClass\">staterestore</a>,\n<a href=\"#/api/Ext.grid.property.Grid-event-beforestatesave\" rel=\"Ext.grid.property.Grid-event-beforestatesave\" class=\"docClass\">beforestatesave</a> and <a href=\"#/api/Ext.grid.property.Grid-event-statesave\" rel=\"Ext.grid.property.Grid-event-statesave\" class=\"docClass\">statesave</a> events.</p>\n\n",
1158       "private": false,
1159       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1160       "linenr": 18,
1161       "html_filename": "Stateful.html",
1162       "href": "Stateful.html#Ext-state-Stateful-cfg-stateful",
1163       "shortDoc": "A flag which causes the object to attempt to restore the state of\ninternal properties from a saved state on startup. ..."
1164     },
1165     {
1166       "tagname": "cfg",
1167       "name": "style",
1168       "member": "Ext.AbstractComponent",
1169       "type": "String",
1170       "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",
1171       "private": false,
1172       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1173       "linenr": 300,
1174       "html_filename": "AbstractComponent.html",
1175       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-style",
1176       "shortDoc": "A custom style specification to be applied to this component's Element.  Should be a valid argument to\nExt.core.Eleme..."
1177     },
1178     {
1179       "tagname": "cfg",
1180       "name": "styleHtmlCls",
1181       "member": "Ext.AbstractComponent",
1182       "type": "String",
1183       "doc": "<p>The class that is added to the content target when you set styleHtmlContent to true.\nDefaults to 'x-html'</p>\n",
1184       "private": false,
1185       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1186       "linenr": 434,
1187       "html_filename": "AbstractComponent.html",
1188       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlCls"
1189     },
1190     {
1191       "tagname": "cfg",
1192       "name": "styleHtmlContent",
1193       "member": "Ext.AbstractComponent",
1194       "type": "Boolean",
1195       "doc": "<p>True to automatically style the html inside the content target of this component (body for panels).\nDefaults to false.</p>\n",
1196       "private": false,
1197       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1198       "linenr": 427,
1199       "html_filename": "AbstractComponent.html",
1200       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-styleHtmlContent"
1201     },
1202     {
1203       "tagname": "cfg",
1204       "name": "suspendLayout",
1205       "member": "Ext.container.AbstractContainer",
1206       "type": "Boolean",
1207       "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",
1208       "private": false,
1209       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1210       "linenr": 155,
1211       "html_filename": "AbstractContainer.html",
1212       "href": "AbstractContainer.html#Ext-container-AbstractContainer-cfg-suspendLayout",
1213       "shortDoc": "If true, suspend calls to doLayout.  Useful when batching multiple adds to a container and not passing them\nas multip..."
1214     },
1215     {
1216       "tagname": "cfg",
1217       "name": "tbar",
1218       "member": "Ext.panel.Panel",
1219       "type": "Object/Array",
1220       "doc": "<p>Convenience method. Short for 'Top Bar'.</p>\n\n<pre><code>tbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n</code></pre>\n\n<p>is equivalent to</p>\n\n<pre><code>dockedItems: [{\n    xtype: 'toolbar',\n    dock: 'top',\n    items: [\n        { xtype: 'button', text: 'Button 1' }\n    ]\n}]\n</code></pre>\n",
1221       "private": false,
1222       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
1223       "linenr": 457,
1224       "html_filename": "Panel3.html",
1225       "href": "Panel3.html#Ext-panel-Panel-cfg-tbar",
1226       "shortDoc": "Convenience method. Short for 'Top Bar'.\n\ntbar: [\n  { xtype: 'button', text: 'Button 1' }\n]\n\n\nis equivalent to\n\ndocke..."
1227     },
1228     {
1229       "tagname": "cfg",
1230       "name": "titleCollapse",
1231       "member": "Ext.panel.Panel",
1232       "type": "Boolean",
1233       "doc": "<p><code>true</code> to allow expanding and collapsing the panel (when <code><a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> = true</code>)\nby clicking anywhere in the header bar, <code>false</code>) to allow it only by clicking to tool button\n(defaults to <code>false</code>)).</p>\n",
1234       "private": false,
1235       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
1236       "linenr": 150,
1237       "html_filename": "Panel3.html",
1238       "href": "Panel3.html#Ext-panel-Panel-cfg-titleCollapse",
1239       "shortDoc": "true to allow expanding and collapsing the panel (when collapsible = true)\nby clicking anywhere in the header bar, fa..."
1240     },
1241     {
1242       "tagname": "cfg",
1243       "name": "toFrontOnShow",
1244       "member": "Ext.Component",
1245       "type": "Boolean",
1246       "doc": "<p>True to automatically call <a href=\"#/api/Ext.grid.property.Grid-method-toFront\" rel=\"Ext.grid.property.Grid-method-toFront\" class=\"docClass\">toFront</a> when the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method is called\non an already visible, floating component (default is <code>true</code>).</p>\n\n",
1247       "private": false,
1248       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1249       "linenr": 199,
1250       "html_filename": "Component.html",
1251       "href": "Component.html#Ext-Component-cfg-toFrontOnShow",
1252       "shortDoc": "True to automatically call toFront when the show method is called\non an already visible, floating component (default ..."
1253     },
1254     {
1255       "tagname": "cfg",
1256       "name": "tools",
1257       "member": "Ext.panel.Panel",
1258       "type": "Array",
1259       "doc": "<p>An array of <a href=\"#/api/Ext.panel.Tool\" rel=\"Ext.panel.Tool\" class=\"docClass\">Ext.panel.Tool</a> configs/instances to be added to the header tool area. The tools are stored as child\ncomponents of the header container. They can be accessed using <a href=\"#/api/Ext.grid.property.Grid-method-down\" rel=\"Ext.grid.property.Grid-method-down\" class=\"docClass\">down</a> and {#query}, as well as the other\ncomponent methods. The toggle tool is automatically created if <a href=\"#/api/Ext.grid.property.Grid-cfg-collapsible\" rel=\"Ext.grid.property.Grid-cfg-collapsible\" class=\"docClass\">collapsible</a> is set to true.</p>\n\n<p>Note that, apart from the toggle tool which is provided when a panel is collapsible, these\ntools only provide the visual button. Any required functionality must be provided by adding\nhandlers that implement the necessary behavior.</p>\n\n\n<p>Example usage:</p>\n\n\n<pre><code>tools:[{\n    type:'refresh',\n    qtip: 'Refresh form Data',\n    // hidden:true,\n    handler: function(event, toolEl, panel){\n        // refresh logic\n    }\n},\n{\n    type:'help',\n    qtip: 'Get Help',\n    handler: function(event, toolEl, panel){\n        // show help here\n    }\n}]\n</code></pre>\n\n",
1260       "private": false,
1261       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
1262       "linenr": 281,
1263       "html_filename": "Panel3.html",
1264       "href": "Panel3.html#Ext-panel-Panel-cfg-tools",
1265       "shortDoc": "An array of Ext.panel.Tool configs/instances to be added to the header tool area. The tools are stored as child\ncompo..."
1266     },
1267     {
1268       "tagname": "cfg",
1269       "name": "tpl",
1270       "member": "Ext.AbstractComponent",
1271       "type": "Mixed",
1272       "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.grid.property.Grid-cfg-data\" rel=\"Ext.grid.property.Grid-cfg-data\" class=\"docClass\">data</a></code> and\n<code><a href=\"#/api/Ext.grid.property.Grid-cfg-tplWriteMode\" rel=\"Ext.grid.property.Grid-cfg-tplWriteMode\" class=\"docClass\">tplWriteMode</a></code> configurations.</p>\n",
1273       "private": false,
1274       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1275       "linenr": 231,
1276       "html_filename": "AbstractComponent.html",
1277       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tpl",
1278       "shortDoc": "An Ext.Template, Ext.XTemplate\nor an array of strings to form an Ext.XTemplate.\nUsed in conjunction with the data and..."
1279     },
1280     {
1281       "tagname": "cfg",
1282       "name": "tplWriteMode",
1283       "member": "Ext.AbstractComponent",
1284       "type": "String",
1285       "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",
1286       "private": false,
1287       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1288       "linenr": 245,
1289       "html_filename": "AbstractComponent.html",
1290       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-tplWriteMode",
1291       "shortDoc": "The Ext.(X)Template method to use when\nupdating the content area of the Component. Defaults to 'overwrite'\n(see Ext.X..."
1292     },
1293     {
1294       "tagname": "cfg",
1295       "name": "ui",
1296       "member": "Ext.AbstractComponent",
1297       "type": "String/Array",
1298       "doc": "<p>A set style for a component. Can be a string or an Array of multiple strings (UIs)</p>\n",
1299       "private": false,
1300       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1301       "linenr": 287,
1302       "html_filename": "AbstractComponent.html",
1303       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-ui"
1304     },
1305     {
1306       "tagname": "cfg",
1307       "name": "valueField",
1308       "member": "Ext.grid.property.Grid",
1309       "type": "String",
1310       "doc": "<p>Optional. The name of the field from the property store to use as the value field name. Defaults to <code>'value'</code>\nThis may be useful if you do not configure the property Grid from an object, but use your own store configuration.</p>\n",
1311       "private": false,
1312       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
1313       "linenr": 108,
1314       "html_filename": "Grid.html",
1315       "href": "Grid.html#Ext-grid-property-Grid-cfg-valueField",
1316       "shortDoc": "Optional. The name of the field from the property store to use as the value field name. Defaults to 'value'\nThis may ..."
1317     },
1318     {
1319       "tagname": "cfg",
1320       "name": "width",
1321       "member": "Ext.AbstractComponent",
1322       "type": "Number",
1323       "doc": "<p>The width of this component in pixels.</p>\n",
1324       "private": false,
1325       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1326       "linenr": 329,
1327       "html_filename": "AbstractComponent.html",
1328       "href": "AbstractComponent.html#Ext-AbstractComponent-cfg-width"
1329     }
1330   ],
1331   "method": [
1332     {
1333       "tagname": "method",
1334       "name": "Grid",
1335       "member": "Ext.grid.property.Grid",
1336       "doc": "\n",
1337       "params": [
1338         {
1339           "type": "Object",
1340           "name": "config",
1341           "doc": "<p>The grid config object</p>\n",
1342           "optional": false
1343         }
1344       ],
1345       "return": {
1346         "type": "void",
1347         "doc": "\n"
1348       },
1349       "private": false,
1350       "static": false,
1351       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
1352       "linenr": 1,
1353       "html_filename": "Grid.html",
1354       "href": "Grid.html#Ext-grid-property-Grid-method-constructor",
1355       "shortDoc": "\n"
1356     },
1357     {
1358       "tagname": "method",
1359       "name": "add",
1360       "member": "Ext.container.AbstractContainer",
1361       "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.grid.property.Grid-event-beforeadd\" rel=\"Ext.grid.property.Grid-event-beforeadd\" class=\"docClass\">beforeadd</a> event before adding.</li>\n<li>The Container's <a href=\"#/api/Ext.grid.property.Grid-cfg-defaults\" rel=\"Ext.grid.property.Grid-cfg-defaults\" class=\"docClass\">default config values</a> will be applied\naccordingly (see <code><a href=\"#/api/Ext.grid.property.Grid-cfg-defaults\" rel=\"Ext.grid.property.Grid-cfg-defaults\" class=\"docClass\">defaults</a></code> for details).</li>\n<li>Fires the <code><a href=\"#/api/Ext.grid.property.Grid-event-add\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-layout\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-defaultType\" rel=\"Ext.grid.property.Grid-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",
1362       "params": [
1363         {
1364           "type": "...Object/Array",
1365           "name": "Component",
1366           "doc": "<p>Either one or more Components to add or an Array of Components to add.\nSee <code><a href=\"#/api/Ext.grid.property.Grid-property-items\" rel=\"Ext.grid.property.Grid-property-items\" class=\"docClass\">items</a></code> for additional information.</p>\n",
1367           "optional": false
1368         }
1369       ],
1370       "return": {
1371         "type": "Ext.Component/Array",
1372         "doc": "<p>The Components that were added.</p>\n"
1373       },
1374       "private": false,
1375       "static": false,
1376       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1377       "linenr": 423,
1378       "html_filename": "AbstractContainer.html",
1379       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-add",
1380       "shortDoc": "Adds Component(s) to this Container.\n\nDescription:\n\n\nFires the beforeadd event before adding.\nThe Container's default..."
1381     },
1382     {
1383       "tagname": "method",
1384       "name": "addClass",
1385       "member": "Ext.AbstractComponent",
1386       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.grid.property.Grid-method-addCls\" rel=\"Ext.grid.property.Grid-method-addCls\" class=\"docClass\">addCls</a>\nAdds a CSS class to the top level element representing this component.</p>\n",
1387       "params": [
1388         {
1389           "type": "String",
1390           "name": "cls",
1391           "doc": "<p>The CSS class name to add</p>\n",
1392           "optional": false
1393         }
1394       ],
1395       "return": {
1396         "type": "Ext.Component",
1397         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
1398       },
1399       "private": false,
1400       "static": false,
1401       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1402       "linenr": 2161,
1403       "html_filename": "AbstractComponent.html",
1404       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClass",
1405       "shortDoc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.grid.property.Grid-method-addCls\" rel=\"Ext.grid.property.Grid-method-addCls\" class=\"docClass\">addCls</a>\nAdds a CSS class to the top level element representing this component.</p>\n"
1406     },
1407     {
1408       "tagname": "method",
1409       "name": "addCls",
1410       "member": "Ext.AbstractComponent",
1411       "doc": "<p>Adds a CSS class to the top level element representing this component.</p>\n",
1412       "params": [
1413         {
1414           "type": "String",
1415           "name": "cls",
1416           "doc": "<p>The CSS class name to add</p>\n",
1417           "optional": false
1418         }
1419       ],
1420       "return": {
1421         "type": "Ext.Component",
1422         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
1423       },
1424       "private": false,
1425       "static": false,
1426       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1427       "linenr": 2139,
1428       "html_filename": "AbstractComponent.html",
1429       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addCls",
1430       "shortDoc": "<p>Adds a CSS class to the top level element representing this component.</p>\n"
1431     },
1432     {
1433       "tagname": "method",
1434       "name": "addClsWithUI",
1435       "member": "Ext.AbstractComponent",
1436       "doc": "<p>Adds a cls to the uiCls array, which will also call <a href=\"#/api/Ext.grid.property.Grid--addUIClsToElement\" rel=\"Ext.grid.property.Grid--addUIClsToElement\" class=\"docClass\">addUIClsToElement</a> and adds\nto all elements of this component.</p>\n",
1437       "params": [
1438         {
1439           "type": "String/Array",
1440           "name": "cls",
1441           "doc": "<p>A string or an array of strings to add to the uiCls</p>\n",
1442           "optional": false
1443         }
1444       ],
1445       "return": {
1446         "type": "void",
1447         "doc": "\n"
1448       },
1449       "private": false,
1450       "static": false,
1451       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1452       "linenr": 1346,
1453       "html_filename": "AbstractComponent.html",
1454       "href": "AbstractComponent.html#Ext-AbstractComponent-method-addClsWithUI",
1455       "shortDoc": "<p>Adds a cls to the uiCls array, which will also call <a href=\"#/api/Ext.grid.property.Grid--addUIClsToElement\" rel=\"Ext.grid.property.Grid--addUIClsToElement\" class=\"docClass\">addUIClsToElement</a> and adds\nto all elements of this component.</p>\n"
1456     },
1457     {
1458       "tagname": "method",
1459       "name": "addDocked",
1460       "member": "Ext.panel.AbstractPanel",
1461       "doc": "<p>Adds docked item(s) to the panel.</p>\n",
1462       "params": [
1463         {
1464           "type": "Object/Array",
1465           "name": "component",
1466           "doc": "<p>The Component or array of components to add. The components\nmust include a 'dock' parameter on each component to indicate where it should be docked ('top', 'right',\n'bottom', 'left').</p>\n",
1467           "optional": false
1468         },
1469         {
1470           "type": "Number",
1471           "name": "pos",
1472           "doc": "<p>(optional) The index at which the Component will be added</p>\n",
1473           "optional": true
1474         }
1475       ],
1476       "return": {
1477         "type": "void",
1478         "doc": "\n"
1479       },
1480       "private": false,
1481       "static": false,
1482       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
1483       "linenr": 235,
1484       "html_filename": "AbstractPanel.html",
1485       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-addDocked",
1486       "shortDoc": "<p>Adds docked item(s) to the panel.</p>\n"
1487     },
1488     {
1489       "tagname": "method",
1490       "name": "addEvents",
1491       "member": "Ext.util.Observable",
1492       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
1493       "params": [
1494         {
1495           "type": "Object/String",
1496           "name": "o",
1497           "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",
1498           "optional": false
1499         },
1500         {
1501           "type": "String",
1502           "name": "",
1503           "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",
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/util/Observable.js",
1514       "linenr": 452,
1515       "html_filename": "Observable.html",
1516       "href": "Observable.html#Ext-util-Observable-method-addEvents",
1517       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
1518     },
1519     {
1520       "tagname": "method",
1521       "name": "addListener",
1522       "member": "Ext.util.Observable",
1523       "doc": "<p>Appends an event handler to this object.</p>\n",
1524       "params": [
1525         {
1526           "type": "String",
1527           "name": "eventName",
1528           "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",
1529           "optional": false
1530         },
1531         {
1532           "type": "Function",
1533           "name": "handler",
1534           "doc": "<p>The method the event invokes.</p>\n",
1535           "optional": false
1536         },
1537         {
1538           "type": "Object",
1539           "name": "scope",
1540           "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",
1541           "optional": true
1542         },
1543         {
1544           "type": "Object",
1545           "name": "options",
1546           "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",
1547           "optional": true
1548         }
1549       ],
1550       "return": {
1551         "type": "void",
1552         "doc": "\n"
1553       },
1554       "private": false,
1555       "static": false,
1556       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1557       "linenr": 271,
1558       "html_filename": "Observable.html",
1559       "href": "Observable.html#Ext-util-Observable-method-addListener",
1560       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
1561     },
1562     {
1563       "tagname": "method",
1564       "name": "addManagedListener",
1565       "member": "Ext.util.Observable",
1566       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
1567       "params": [
1568         {
1569           "type": "Observable/Element",
1570           "name": "item",
1571           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
1572           "optional": false
1573         },
1574         {
1575           "type": "Object/String",
1576           "name": "ename",
1577           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1578           "optional": false
1579         },
1580         {
1581           "type": "Function",
1582           "name": "fn",
1583           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
1584           "optional": false
1585         },
1586         {
1587           "type": "Object",
1588           "name": "scope",
1589           "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",
1590           "optional": false
1591         },
1592         {
1593           "type": "Object",
1594           "name": "opt",
1595           "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",
1596           "optional": false
1597         }
1598       ],
1599       "return": {
1600         "type": "void",
1601         "doc": "\n"
1602       },
1603       "private": false,
1604       "static": false,
1605       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1606       "linenr": 155,
1607       "html_filename": "Observable.html",
1608       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
1609       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
1610     },
1611     {
1612       "tagname": "method",
1613       "name": "addStateEvents",
1614       "member": "Ext.state.Stateful",
1615       "doc": "<p>Add events that will trigger the state to be saved.</p>\n",
1616       "params": [
1617         {
1618           "type": "String/Array",
1619           "name": "events",
1620           "doc": "<p>The event name or an array of event names.</p>\n",
1621           "optional": false
1622         }
1623       ],
1624       "return": {
1625         "type": "void",
1626         "doc": "\n"
1627       },
1628       "private": false,
1629       "static": false,
1630       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1631       "linenr": 159,
1632       "html_filename": "Stateful.html",
1633       "href": "Stateful.html#Ext-state-Stateful-method-addStateEvents",
1634       "shortDoc": "<p>Add events that will trigger the state to be saved.</p>\n"
1635     },
1636     {
1637       "tagname": "method",
1638       "name": "afterComponentLayout",
1639       "member": "Ext.AbstractComponent",
1640       "doc": "\n",
1641       "params": [
1642         {
1643           "type": "Number",
1644           "name": "adjWidth",
1645           "doc": "<p>The box-adjusted width that was set</p>\n",
1646           "optional": false
1647         },
1648         {
1649           "type": "Number",
1650           "name": "adjHeight",
1651           "doc": "<p>The box-adjusted height that was set</p>\n",
1652           "optional": false
1653         },
1654         {
1655           "type": "Boolean",
1656           "name": "isSetSize",
1657           "doc": "<p>Whether or not the height/width are stored on the component permanently</p>\n",
1658           "optional": false
1659         },
1660         {
1661           "type": "Ext.Component",
1662           "name": "layoutOwner",
1663           "doc": "<p>Component which sent the layout. Only used when isSetSize is false.</p>\n",
1664           "optional": false
1665         }
1666       ],
1667       "return": {
1668         "type": "void",
1669         "doc": "\n"
1670       },
1671       "private": false,
1672       "static": false,
1673       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1674       "linenr": 2481,
1675       "html_filename": "AbstractComponent.html",
1676       "href": "AbstractComponent.html#Ext-AbstractComponent-method-afterComponentLayout",
1677       "shortDoc": "\n"
1678     },
1679     {
1680       "tagname": "method",
1681       "name": "alignTo",
1682       "member": "Ext.util.Floating",
1683       "doc": "<p>Aligns this floating Component to the specified element</p>\n",
1684       "params": [
1685         {
1686           "type": "Mixed",
1687           "name": "element",
1688           "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",
1689           "optional": false
1690         },
1691         {
1692           "type": "String",
1693           "name": "position",
1694           "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",
1695           "optional": false
1696         },
1697         {
1698           "type": "Array",
1699           "name": "offsets",
1700           "doc": "<p>(optional) Offset the positioning by [x, y]</p>\n",
1701           "optional": true
1702         }
1703       ],
1704       "return": {
1705         "type": "Component",
1706         "doc": "<p>this</p>\n"
1707       },
1708       "private": false,
1709       "static": false,
1710       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1711       "linenr": 171,
1712       "html_filename": "Floating.html",
1713       "href": "Floating.html#Ext-util-Floating-method-alignTo",
1714       "shortDoc": "<p>Aligns this floating Component to the specified element</p>\n"
1715     },
1716     {
1717       "tagname": "method",
1718       "name": "animate",
1719       "member": "Ext.util.Animate",
1720       "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",
1721       "params": [
1722         {
1723           "type": "Object",
1724           "name": "config",
1725           "doc": "<p>An object containing properties which describe the animation's start and end states, and the timeline of the animation.</p>\n",
1726           "optional": false
1727         }
1728       ],
1729       "return": {
1730         "type": "Object",
1731         "doc": "<p>this</p>\n"
1732       },
1733       "private": false,
1734       "static": false,
1735       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1736       "linenr": 207,
1737       "html_filename": "Animate.html",
1738       "href": "Animate.html#Ext-util-Animate-method-animate",
1739       "shortDoc": "Perform custom animation on this object.\nThis method is applicable to both the the Component class and the Element cl..."
1740     },
1741     {
1742       "tagname": "method",
1743       "name": "applyState",
1744       "member": "Ext.state.Stateful",
1745       "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",
1746       "params": [
1747         {
1748           "type": "Object",
1749           "name": "state",
1750           "doc": "<p>The state</p>\n",
1751           "optional": false
1752         }
1753       ],
1754       "return": {
1755         "type": "void",
1756         "doc": "\n"
1757       },
1758       "private": false,
1759       "static": false,
1760       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
1761       "linenr": 225,
1762       "html_filename": "Stateful.html",
1763       "href": "Stateful.html#Ext-state-Stateful-method-applyState",
1764       "shortDoc": "Applies the state to the object. This should be overridden in subclasses to do\nmore complex state operations. By defa..."
1765     },
1766     {
1767       "tagname": "method",
1768       "name": "beforeComponentLayout",
1769       "member": "Ext.AbstractComponent",
1770       "doc": "<p>Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being executed.</p>\n",
1771       "params": [
1772         {
1773           "type": "Number",
1774           "name": "adjWidth",
1775           "doc": "<p>The box-adjusted width that was set</p>\n",
1776           "optional": false
1777         },
1778         {
1779           "type": "Number",
1780           "name": "adjHeight",
1781           "doc": "<p>The box-adjusted height that was set</p>\n",
1782           "optional": false
1783         },
1784         {
1785           "type": "Boolean",
1786           "name": "isSetSize",
1787           "doc": "<p>Whether or not the height/width are stored on the component permanently</p>\n",
1788           "optional": false
1789         },
1790         {
1791           "type": "Ext.Component",
1792           "name": "layoutOwner",
1793           "doc": "<p>Component which sent the layout. Only used when isSetSize is false.</p>\n",
1794           "optional": false
1795         }
1796       ],
1797       "return": {
1798         "type": "void",
1799         "doc": "\n"
1800       },
1801       "private": false,
1802       "static": false,
1803       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
1804       "linenr": 2491,
1805       "html_filename": "AbstractComponent.html",
1806       "href": "AbstractComponent.html#Ext-AbstractComponent-method-beforeComponentLayout",
1807       "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the componentLayout\nfrom being ex..."
1808     },
1809     {
1810       "tagname": "method",
1811       "name": "beforeLayout",
1812       "member": "Ext.container.AbstractContainer",
1813       "doc": "<p>Occurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being executed.</p>\n",
1814       "params": [
1815
1816       ],
1817       "return": {
1818         "type": "void",
1819         "doc": "\n"
1820       },
1821       "private": false,
1822       "static": false,
1823       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1824       "linenr": 853,
1825       "html_filename": "AbstractContainer.html",
1826       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-beforeLayout",
1827       "shortDoc": "Occurs before componentLayout is run. Returning false from this method will prevent the containerLayout\nfrom being ex..."
1828     },
1829     {
1830       "tagname": "method",
1831       "name": "bubble",
1832       "member": "Ext.Component",
1833       "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",
1834       "params": [
1835         {
1836           "type": "Function",
1837           "name": "fn",
1838           "doc": "<p>The function to call</p>\n",
1839           "optional": false
1840         },
1841         {
1842           "type": "Object",
1843           "name": "scope",
1844           "doc": "<p>(optional) The scope of the function (defaults to current node)</p>\n",
1845           "optional": true
1846         },
1847         {
1848           "type": "Array",
1849           "name": "args",
1850           "doc": "<p>(optional) The args to call the function with (default to passing the current component)</p>\n",
1851           "optional": true
1852         }
1853       ],
1854       "return": {
1855         "type": "Ext.Component",
1856         "doc": "<p>this</p>\n"
1857       },
1858       "private": false,
1859       "static": false,
1860       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
1861       "linenr": 1004,
1862       "html_filename": "Component.html",
1863       "href": "Component.html#Ext-Component-method-bubble",
1864       "shortDoc": "Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (this) of..."
1865     },
1866     {
1867       "tagname": "method",
1868       "name": "capture",
1869       "member": "Ext.util.Observable",
1870       "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",
1871       "params": [
1872         {
1873           "type": "Observable",
1874           "name": "o",
1875           "doc": "<p>The Observable to capture events from.</p>\n",
1876           "optional": false
1877         },
1878         {
1879           "type": "Function",
1880           "name": "fn",
1881           "doc": "<p>The function to call when an event is fired.</p>\n",
1882           "optional": false
1883         },
1884         {
1885           "type": "Object",
1886           "name": "scope",
1887           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
1888           "optional": true
1889         }
1890       ],
1891       "return": {
1892         "type": "void",
1893         "doc": "\n"
1894       },
1895       "private": false,
1896       "static": true,
1897       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1898       "linenr": 55,
1899       "html_filename": "Observable.html",
1900       "href": "Observable.html#Ext-util-Observable-method-capture",
1901       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
1902     },
1903     {
1904       "tagname": "method",
1905       "name": "cascade",
1906       "member": "Ext.container.AbstractContainer",
1907       "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",
1908       "params": [
1909         {
1910           "type": "Function",
1911           "name": "fn",
1912           "doc": "<p>The function to call</p>\n",
1913           "optional": false
1914         },
1915         {
1916           "type": "Object",
1917           "name": "scope",
1918           "doc": "<p>(optional) The scope of the function (defaults to current component)</p>\n",
1919           "optional": true
1920         },
1921         {
1922           "type": "Array",
1923           "name": "args",
1924           "doc": "<p>(optional) The args to call the function with. The current component always passed as the last argument.</p>\n",
1925           "optional": true
1926         }
1927       ],
1928       "return": {
1929         "type": "Ext.Container",
1930         "doc": "<p>this</p>\n"
1931       },
1932       "private": false,
1933       "static": false,
1934       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1935       "linenr": 717,
1936       "html_filename": "AbstractContainer.html",
1937       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-cascade",
1938       "shortDoc": "Cascades down the component/container heirarchy from this component (passed in the first call), calling the specified..."
1939     },
1940     {
1941       "tagname": "method",
1942       "name": "center",
1943       "member": "Ext.util.Floating",
1944       "doc": "<p>Center this Component in its container.</p>\n",
1945       "params": [
1946
1947       ],
1948       "return": {
1949         "type": "Component",
1950         "doc": "<p>this</p>\n"
1951       },
1952       "private": false,
1953       "static": false,
1954       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
1955       "linenr": 249,
1956       "html_filename": "Floating.html",
1957       "href": "Floating.html#Ext-util-Floating-method-center",
1958       "shortDoc": "<p>Center this Component in its container.</p>\n"
1959     },
1960     {
1961       "tagname": "method",
1962       "name": "child",
1963       "member": "Ext.container.AbstractContainer",
1964       "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",
1965       "params": [
1966         {
1967           "type": "String",
1968           "name": "selector",
1969           "doc": "<p>An <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector</p>\n",
1970           "optional": false
1971         }
1972       ],
1973       "return": {
1974         "type": "void",
1975         "doc": "<p>Ext.Component</p>\n"
1976       },
1977       "private": false,
1978       "static": false,
1979       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
1980       "linenr": 782,
1981       "html_filename": "AbstractContainer.html",
1982       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-child",
1983       "shortDoc": "Retrieves the first direct child of this container which matches the passed selector.\nThe passed in selector must com..."
1984     },
1985     {
1986       "tagname": "method",
1987       "name": "clearListeners",
1988       "member": "Ext.util.Observable",
1989       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
1990       "params": [
1991
1992       ],
1993       "return": {
1994         "type": "void",
1995         "doc": "\n"
1996       },
1997       "private": false,
1998       "static": false,
1999       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2000       "linenr": 383,
2001       "html_filename": "Observable.html",
2002       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
2003       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
2004     },
2005     {
2006       "tagname": "method",
2007       "name": "clearManagedListeners",
2008       "member": "Ext.util.Observable",
2009       "doc": "<p>Removes all managed listeners for this object.</p>\n",
2010       "params": [
2011
2012       ],
2013       "return": {
2014         "type": "void",
2015         "doc": "\n"
2016       },
2017       "private": false,
2018       "static": false,
2019       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2020       "linenr": 412,
2021       "html_filename": "Observable.html",
2022       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
2023       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
2024     },
2025     {
2026       "tagname": "method",
2027       "name": "cloneConfig",
2028       "member": "Ext.Component",
2029       "doc": "<p>Clone the current component using the original config values passed into this instance by default.</p>\n",
2030       "params": [
2031         {
2032           "type": "Object",
2033           "name": "overrides",
2034           "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",
2035           "optional": false
2036         }
2037       ],
2038       "return": {
2039         "type": "Ext.Component",
2040         "doc": "<p>clone The cloned copy of this component</p>\n"
2041       },
2042       "private": false,
2043       "static": false,
2044       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2045       "linenr": 944,
2046       "html_filename": "Component.html",
2047       "href": "Component.html#Ext-Component-method-cloneConfig",
2048       "shortDoc": "<p>Clone the current component using the original config values passed into this instance by default.</p>\n"
2049     },
2050     {
2051       "tagname": "method",
2052       "name": "close",
2053       "member": "Ext.panel.Panel",
2054       "doc": "<p>Closes the Panel. By default, this method, removes it from the DOM, <a href=\"#/api/Ext.Component-event-destroy\" rel=\"Ext.Component-event-destroy\" class=\"docClass\">destroy</a>s\nthe Panel object and all its descendant Components. The <a href=\"#/api/Ext.grid.property.Grid--beforeclose\" rel=\"Ext.grid.property.Grid--beforeclose\" class=\"docClass\">beforeclose</a>\nevent is fired before the close happens and will cancel the close action if it returns false.<p>\n<p><b>Note:</b> This method is not affected by the <a href=\"#/api/Ext.grid.property.Grid-cfg-closeAction\" rel=\"Ext.grid.property.Grid-cfg-closeAction\" class=\"docClass\">closeAction</a> setting which\nonly affects the action triggered when clicking the <a href=\"#/api/Ext.grid.property.Grid-cfg-closable\" rel=\"Ext.grid.property.Grid-cfg-closable\" class=\"docClass\">'close' tool in the header</a>.\nTo hide the Panel without destroying it, call <a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a>.</p>\n\n",
2055       "params": [
2056
2057       ],
2058       "return": {
2059         "type": "void",
2060         "doc": "\n"
2061       },
2062       "private": false,
2063       "static": false,
2064       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
2065       "linenr": 698,
2066       "html_filename": "Panel3.html",
2067       "href": "Panel3.html#Ext-panel-Panel-method-close",
2068       "shortDoc": "Closes the Panel. By default, this method, removes it from the DOM, destroys\nthe Panel object and all its descendant ..."
2069     },
2070     {
2071       "tagname": "method",
2072       "name": "collapse",
2073       "member": "Ext.panel.Panel",
2074       "doc": "<p>Collapses the panel body so that the body becomes hidden. Docked Components parallel to the\nborder towards which the collapse takes place will remain visible.  Fires the <a href=\"#/api/Ext.grid.property.Grid--beforecollapse\" rel=\"Ext.grid.property.Grid--beforecollapse\" class=\"docClass\">beforecollapse</a> event which will\ncancel the collapse action if it returns false.</p>\n",
2075       "params": [
2076         {
2077           "type": "Number",
2078           "name": "direction",
2079           "doc": "<p>. The direction to collapse towards. Must be one of<ul>\n<li>Ext.Component.DIRECTION_TOP</li>\n<li>Ext.Component.DIRECTION_RIGHT</li>\n<li>Ext.Component.DIRECTION_BOTTOM</li>\n<li>Ext.Component.DIRECTION_LEFT</li></ul></p>\n",
2080           "optional": false
2081         },
2082         {
2083           "type": "Boolean",
2084           "name": "animate",
2085           "doc": "<p>True to animate the transition, else false (defaults to the value of the\n<a href=\"#/api/Ext.grid.property.Grid-cfg-animCollapse\" rel=\"Ext.grid.property.Grid-cfg-animCollapse\" class=\"docClass\">animCollapse</a> panel config)</p>\n",
2086           "optional": false
2087         },
2088         {
2089           "type": "Object",
2090           "name": "internal",
2091           "doc": "\n",
2092           "optional": false
2093         }
2094       ],
2095       "return": {
2096         "type": "Ext.panel.Panel",
2097         "doc": "<p>this</p>\n"
2098       },
2099       "private": false,
2100       "static": false,
2101       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
2102       "linenr": 842,
2103       "html_filename": "Panel3.html",
2104       "href": "Panel3.html#Ext-panel-Panel-method-collapse",
2105       "shortDoc": "Collapses the panel body so that the body becomes hidden. Docked Components parallel to the\nborder towards which the ..."
2106     },
2107     {
2108       "tagname": "method",
2109       "name": "destroy",
2110       "member": "Ext.AbstractComponent",
2111       "doc": "<p>Destroys the Component.</p>\n",
2112       "params": [
2113
2114       ],
2115       "return": {
2116         "type": "void",
2117         "doc": "\n"
2118       },
2119       "private": false,
2120       "static": false,
2121       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2122       "linenr": 2672,
2123       "html_filename": "AbstractComponent.html",
2124       "href": "AbstractComponent.html#Ext-AbstractComponent-method-destroy",
2125       "shortDoc": "<p>Destroys the Component.</p>\n"
2126     },
2127     {
2128       "tagname": "method",
2129       "name": "determineScrollbars",
2130       "member": "Ext.panel.Table",
2131       "doc": "<p>Request a recalculation of scrollbars and put them in if they are needed.</p>\n",
2132       "params": [
2133
2134       ],
2135       "return": {
2136         "type": "void",
2137         "doc": "\n"
2138       },
2139       "private": false,
2140       "static": false,
2141       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
2142       "linenr": 729,
2143       "html_filename": "Table2.html",
2144       "href": "Table2.html#Ext-panel-Table-method-determineScrollbars",
2145       "shortDoc": "<p>Request a recalculation of scrollbars and put them in if they are needed.</p>\n"
2146     },
2147     {
2148       "tagname": "method",
2149       "name": "disable",
2150       "member": "Ext.AbstractComponent",
2151       "doc": "<p>Disable the component.</p>\n",
2152       "params": [
2153         {
2154           "type": "Boolean",
2155           "name": "silent",
2156           "doc": "<p>Passing true, will supress the 'disable' event from being fired.</p>\n",
2157           "optional": false
2158         }
2159       ],
2160       "return": {
2161         "type": "void",
2162         "doc": "\n"
2163       },
2164       "private": false,
2165       "static": false,
2166       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2167       "linenr": 2078,
2168       "html_filename": "AbstractComponent.html",
2169       "href": "AbstractComponent.html#Ext-AbstractComponent-method-disable",
2170       "shortDoc": "<p>Disable the component.</p>\n"
2171     },
2172     {
2173       "tagname": "method",
2174       "name": "doAutoRender",
2175       "member": "Ext.AbstractComponent",
2176       "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",
2177       "params": [
2178
2179       ],
2180       "return": {
2181         "type": "void",
2182         "doc": "\n"
2183       },
2184       "private": false,
2185       "static": false,
2186       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2187       "linenr": 816,
2188       "html_filename": "AbstractComponent.html",
2189       "href": "AbstractComponent.html#Ext-AbstractComponent-method-doAutoRender",
2190       "shortDoc": "Handles autoRender.\nFloating Components may have an ownerCt. If they are asking to be constrained, constrain them wit..."
2191     },
2192     {
2193       "tagname": "method",
2194       "name": "doComponentLayout",
2195       "member": "Ext.AbstractComponent",
2196       "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",
2197       "params": [
2198         {
2199           "type": "Object",
2200           "name": "width",
2201           "doc": "\n",
2202           "optional": false
2203         },
2204         {
2205           "type": "Object",
2206           "name": "height",
2207           "doc": "\n",
2208           "optional": false
2209         },
2210         {
2211           "type": "Object",
2212           "name": "isSetSize",
2213           "doc": "\n",
2214           "optional": false
2215         },
2216         {
2217           "type": "Object",
2218           "name": "ownerCt",
2219           "doc": "\n",
2220           "optional": false
2221         }
2222       ],
2223       "return": {
2224         "type": "Ext.container.Container",
2225         "doc": "<p>this</p>\n"
2226       },
2227       "private": false,
2228       "static": false,
2229       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2230       "linenr": 2437,
2231       "html_filename": "AbstractComponent.html",
2232       "href": "AbstractComponent.html#Ext-AbstractComponent-method-doComponentLayout",
2233       "shortDoc": "This method needs to be called whenever you change something on this component that requires the Component's\nlayout t..."
2234     },
2235     {
2236       "tagname": "method",
2237       "name": "doConstrain",
2238       "member": "Ext.util.Floating",
2239       "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",
2240       "params": [
2241         {
2242           "type": "Mixed",
2243           "name": "constrainTo",
2244           "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",
2245           "optional": false
2246         }
2247       ],
2248       "return": {
2249         "type": "void",
2250         "doc": "\n"
2251       },
2252       "private": false,
2253       "static": false,
2254       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
2255       "linenr": 133,
2256       "html_filename": "Floating.html",
2257       "href": "Floating.html#Ext-util-Floating-method-doConstrain",
2258       "shortDoc": "Moves this floating Component into a constrain region.\n\n\nBy default, this Component is constrained to be within the c..."
2259     },
2260     {
2261       "tagname": "method",
2262       "name": "doLayout",
2263       "member": "Ext.container.AbstractContainer",
2264       "doc": "<p>Manually force this container's layout to be recalculated.  The framwork uses this internally to refresh layouts\nform most cases.</p>\n",
2265       "params": [
2266
2267       ],
2268       "return": {
2269         "type": "Ext.container.Container",
2270         "doc": "<p>this</p>\n"
2271       },
2272       "private": false,
2273       "static": false,
2274       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
2275       "linenr": 321,
2276       "html_filename": "AbstractContainer.html",
2277       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-doLayout",
2278       "shortDoc": "Manually force this container's layout to be recalculated.  The framwork uses this internally to refresh layouts\nform..."
2279     },
2280     {
2281       "tagname": "method",
2282       "name": "down",
2283       "member": "Ext.container.AbstractContainer",
2284       "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",
2285       "params": [
2286         {
2287           "type": "String",
2288           "name": "selector",
2289           "doc": "<p>An <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector</p>\n",
2290           "optional": false
2291         }
2292       ],
2293       "return": {
2294         "type": "void",
2295         "doc": "<p>Ext.Component</p>\n"
2296       },
2297       "private": false,
2298       "static": false,
2299       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
2300       "linenr": 792,
2301       "html_filename": "AbstractContainer.html",
2302       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-down",
2303       "shortDoc": "Retrieves the first descendant of this container which matches the passed selector.\nThe passed in selector must compl..."
2304     },
2305     {
2306       "tagname": "method",
2307       "name": "enable",
2308       "member": "Ext.AbstractComponent",
2309       "doc": "<p>Enable the component</p>\n",
2310       "params": [
2311         {
2312           "type": "Boolean",
2313           "name": "silent",
2314           "doc": "<p>Passing false will supress the 'enable' event from being fired.</p>\n",
2315           "optional": false
2316         }
2317       ],
2318       "return": {
2319         "type": "void",
2320         "doc": "\n"
2321       },
2322       "private": false,
2323       "static": false,
2324       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2325       "linenr": 2055,
2326       "html_filename": "AbstractComponent.html",
2327       "href": "AbstractComponent.html#Ext-AbstractComponent-method-enable",
2328       "shortDoc": "<p>Enable the component</p>\n"
2329     },
2330     {
2331       "tagname": "method",
2332       "name": "enableBubble",
2333       "member": "Ext.util.Observable",
2334       "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",
2335       "params": [
2336         {
2337           "type": "String/Array",
2338           "name": "events",
2339           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
2340           "optional": false
2341         }
2342       ],
2343       "return": {
2344         "type": "void",
2345         "doc": "\n"
2346       },
2347       "private": false,
2348       "static": false,
2349       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2350       "linenr": 554,
2351       "html_filename": "Observable.html",
2352       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
2353       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
2354     },
2355     {
2356       "tagname": "method",
2357       "name": "expand",
2358       "member": "Ext.panel.Panel",
2359       "doc": "<p>Expands the panel body so that it becomes visible.  Fires the <a href=\"#/api/Ext.grid.property.Grid--beforeexpand\" rel=\"Ext.grid.property.Grid--beforeexpand\" class=\"docClass\">beforeexpand</a> event which will\ncancel the expand action if it returns false.</p>\n",
2360       "params": [
2361         {
2362           "type": "Boolean",
2363           "name": "animate",
2364           "doc": "<p>True to animate the transition, else false (defaults to the value of the\n<a href=\"#/api/Ext.grid.property.Grid-cfg-animCollapse\" rel=\"Ext.grid.property.Grid-cfg-animCollapse\" class=\"docClass\">animCollapse</a> panel config)</p>\n",
2365           "optional": false
2366         }
2367       ],
2368       "return": {
2369         "type": "Ext.panel.Panel",
2370         "doc": "<p>this</p>\n"
2371       },
2372       "private": false,
2373       "static": false,
2374       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
2375       "linenr": 1123,
2376       "html_filename": "Panel3.html",
2377       "href": "Panel3.html#Ext-panel-Panel-method-expand",
2378       "shortDoc": "Expands the panel body so that it becomes visible.  Fires the beforeexpand event which will\ncancel the expand action ..."
2379     },
2380     {
2381       "tagname": "method",
2382       "name": "findLayoutController",
2383       "member": "Ext.AbstractComponent",
2384       "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",
2385       "params": [
2386
2387       ],
2388       "return": {
2389         "type": "void",
2390         "doc": "\n"
2391       },
2392       "private": false,
2393       "static": false,
2394       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2395       "linenr": 772,
2396       "html_filename": "AbstractComponent.html",
2397       "href": "AbstractComponent.html#Ext-AbstractComponent-method-findLayoutController",
2398       "shortDoc": "This method finds the topmost active layout who's processing will eventually determine the size and position of this\n..."
2399     },
2400     {
2401       "tagname": "method",
2402       "name": "findParentBy",
2403       "member": "Ext.Component",
2404       "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",
2405       "params": [
2406         {
2407           "type": "Function",
2408           "name": "fn",
2409           "doc": "<p>The custom function to call with the arguments (container, this component).</p>\n",
2410           "optional": false
2411         }
2412       ],
2413       "return": {
2414         "type": "Ext.container.Container",
2415         "doc": "<p>The first Container for which the custom function returns true</p>\n"
2416       },
2417       "private": false,
2418       "static": false,
2419       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2420       "linenr": 975,
2421       "html_filename": "Component.html",
2422       "href": "Component.html#Ext-Component-method-findParentBy",
2423       "shortDoc": "Find a container above this component at any level by a custom function. If the passed function returns\ntrue, the con..."
2424     },
2425     {
2426       "tagname": "method",
2427       "name": "findParentByType",
2428       "member": "Ext.Component",
2429       "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",
2430       "params": [
2431         {
2432           "type": "String/Class",
2433           "name": "xtype",
2434           "doc": "<p>The xtype string for a component, or the class of the component directly</p>\n",
2435           "optional": false
2436         }
2437       ],
2438       "return": {
2439         "type": "Ext.container.Container",
2440         "doc": "<p>The first Container which matches the given xtype or class</p>\n"
2441       },
2442       "private": false,
2443       "static": false,
2444       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2445       "linenr": 989,
2446       "html_filename": "Component.html",
2447       "href": "Component.html#Ext-Component-method-findParentByType",
2448       "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"
2449     },
2450     {
2451       "tagname": "method",
2452       "name": "fireEvent",
2453       "member": "Ext.util.Observable",
2454       "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.grid.property.Grid-method-enableBubble\" rel=\"Ext.grid.property.Grid-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
2455       "params": [
2456         {
2457           "type": "String",
2458           "name": "eventName",
2459           "doc": "<p>The name of the event to fire.</p>\n",
2460           "optional": false
2461         },
2462         {
2463           "type": "Object...",
2464           "name": "args",
2465           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
2466           "optional": false
2467         }
2468       ],
2469       "return": {
2470         "type": "Boolean",
2471         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
2472       },
2473       "private": false,
2474       "static": false,
2475       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
2476       "linenr": 232,
2477       "html_filename": "Observable.html",
2478       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
2479       "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..."
2480     },
2481     {
2482       "tagname": "method",
2483       "name": "focus",
2484       "member": "Ext.Component",
2485       "doc": "<p>Try to focus this component.</p>\n",
2486       "params": [
2487         {
2488           "type": "Boolean",
2489           "name": "selectText",
2490           "doc": "<p>(optional) If applicable, true to also select the text in this component</p>\n",
2491           "optional": true
2492         },
2493         {
2494           "type": "Boolean/Number",
2495           "name": "delay",
2496           "doc": "<p>(optional) Delay the focus this number of milliseconds (true for 10 milliseconds).</p>\n",
2497           "optional": true
2498         }
2499       ],
2500       "return": {
2501         "type": "Ext.Component",
2502         "doc": "<p>this</p>\n"
2503       },
2504       "private": false,
2505       "static": false,
2506       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2507       "linenr": 853,
2508       "html_filename": "Component.html",
2509       "href": "Component.html#Ext-Component-method-focus",
2510       "shortDoc": "<p>Try to focus this component.</p>\n"
2511     },
2512     {
2513       "tagname": "method",
2514       "name": "getActiveAnimation",
2515       "member": "Ext.util.Animate",
2516       "doc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
2517       "params": [
2518
2519       ],
2520       "return": {
2521         "type": "Mixed",
2522         "doc": "<p>anim if element has active effects, else false</p>\n"
2523       },
2524       "private": false,
2525       "static": false,
2526       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
2527       "linenr": 377,
2528       "html_filename": "Animate.html",
2529       "href": "Animate.html#Ext-util-Animate-method-getActiveAnimation",
2530       "shortDoc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n"
2531     },
2532     {
2533       "tagname": "method",
2534       "name": "getBox",
2535       "member": "Ext.Component",
2536       "doc": "<p>Gets the current box measurements of the component's underlying element.</p>\n",
2537       "params": [
2538         {
2539           "type": "Boolean",
2540           "name": "local",
2541           "doc": "<p>(optional) If true the element's left and top are returned instead of page XY (defaults to false)</p>\n",
2542           "optional": true
2543         }
2544       ],
2545       "return": {
2546         "type": "Object",
2547         "doc": "<p>box An object in the format {x, y, width, height}</p>\n"
2548       },
2549       "private": false,
2550       "static": false,
2551       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2552       "linenr": 538,
2553       "html_filename": "Component.html",
2554       "href": "Component.html#Ext-Component-method-getBox",
2555       "shortDoc": "<p>Gets the current box measurements of the component's underlying element.</p>\n"
2556     },
2557     {
2558       "tagname": "method",
2559       "name": "getBubbleTarget",
2560       "member": "Ext.AbstractComponent",
2561       "doc": "<p>Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.</p>\n",
2562       "params": [
2563
2564       ],
2565       "return": {
2566         "type": "Ext.container.Container",
2567         "doc": "<p>the Container which owns this Component.</p>\n"
2568       },
2569       "private": false,
2570       "static": false,
2571       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2572       "linenr": 2276,
2573       "html_filename": "AbstractComponent.html",
2574       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getBubbleTarget",
2575       "shortDoc": "<p>Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.</p>\n"
2576     },
2577     {
2578       "tagname": "method",
2579       "name": "getChildByElement",
2580       "member": "Ext.container.Container",
2581       "doc": "<p>Return the immediate child Component in which the passed element is located.</p>\n",
2582       "params": [
2583         {
2584           "type": "Object",
2585           "name": "el",
2586           "doc": "<p>The element to test.</p>\n",
2587           "optional": false
2588         }
2589       ],
2590       "return": {
2591         "type": "Component",
2592         "doc": "<p>The child item which contains the passed element.</p>\n"
2593       },
2594       "private": false,
2595       "static": false,
2596       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/container/Container.js",
2597       "linenr": 162,
2598       "html_filename": "Container.html",
2599       "href": "Container.html#Ext-container-Container-method-getChildByElement",
2600       "shortDoc": "<p>Return the immediate child Component in which the passed element is located.</p>\n"
2601     },
2602     {
2603       "tagname": "method",
2604       "name": "getComponent",
2605       "member": "Ext.panel.AbstractPanel",
2606       "doc": "<p>Attempts a default component lookup (see <a href=\"#/api/Ext.container.Container-method-getComponent\" rel=\"Ext.container.Container-method-getComponent\" class=\"docClass\">Ext.container.Container.getComponent</a>). If the component is not found in the normal\nitems, the dockedItems are searched and the matched component (if any) returned (see {@loink #getDockedComponent}). Note that docked\nitems will only be matched by component id or itemId -- if you pass a numeric index only non-docked child components will be searched.</p>\n",
2607       "params": [
2608         {
2609           "type": "String/Number",
2610           "name": "comp",
2611           "doc": "<p>The component id, itemId or position to find</p>\n",
2612           "optional": false
2613         }
2614       ],
2615       "return": {
2616         "type": "Ext.Component",
2617         "doc": "<p>The component (if found)</p>\n"
2618       },
2619       "private": false,
2620       "static": false,
2621       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
2622       "linenr": 148,
2623       "html_filename": "AbstractPanel.html",
2624       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getComponent",
2625       "shortDoc": "Attempts a default component lookup (see Ext.container.Container.getComponent). If the component is not found in the ..."
2626     },
2627     {
2628       "tagname": "method",
2629       "name": "getDockedComponent",
2630       "member": "Ext.panel.AbstractPanel",
2631       "doc": "<p>Finds a docked component by id, itemId or position. Also see <a href=\"#/api/Ext.grid.property.Grid-method-getDockedItems\" rel=\"Ext.grid.property.Grid-method-getDockedItems\" class=\"docClass\">getDockedItems</a></p>\n",
2632       "params": [
2633         {
2634           "type": "String/Number",
2635           "name": "comp",
2636           "doc": "<p>The id, itemId or position of the docked component (see <a href=\"#/api/Ext.grid.property.Grid-method-getComponent\" rel=\"Ext.grid.property.Grid-method-getComponent\" class=\"docClass\">getComponent</a> for details)</p>\n",
2637           "optional": false
2638         }
2639       ],
2640       "return": {
2641         "type": "Ext.Component",
2642         "doc": "<p>The docked component (if found)</p>\n"
2643       },
2644       "private": false,
2645       "static": false,
2646       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
2647       "linenr": 136,
2648       "html_filename": "AbstractPanel.html",
2649       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getDockedComponent",
2650       "shortDoc": "<p>Finds a docked component by id, itemId or position. Also see <a href=\"#/api/Ext.grid.property.Grid-method-getDockedItems\" rel=\"Ext.grid.property.Grid-method-getDockedItems\" class=\"docClass\">getDockedItems</a></p>\n"
2651     },
2652     {
2653       "tagname": "method",
2654       "name": "getDockedItems",
2655       "member": "Ext.panel.AbstractPanel",
2656       "doc": "<p>Retrieve an array of all currently docked Components.</p>\n",
2657       "params": [
2658         {
2659           "type": "String",
2660           "name": "cqSelector",
2661           "doc": "<p>A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector string to filter the returned items.</p>\n",
2662           "optional": false
2663         }
2664       ],
2665       "return": {
2666         "type": "Array",
2667         "doc": "<p>An array of components.</p>\n"
2668       },
2669       "private": false,
2670       "static": false,
2671       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
2672       "linenr": 329,
2673       "html_filename": "AbstractPanel.html",
2674       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-getDockedItems",
2675       "shortDoc": "<p>Retrieve an array of all currently docked Components.</p>\n"
2676     },
2677     {
2678       "tagname": "method",
2679       "name": "getEl",
2680       "member": "Ext.AbstractComponent",
2681       "doc": "<p>Retrieves the top level element representing this component.</p>\n",
2682       "params": [
2683
2684       ],
2685       "return": {
2686         "type": "void",
2687         "doc": "\n"
2688       },
2689       "private": false,
2690       "static": false,
2691       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2692       "linenr": 1892,
2693       "html_filename": "AbstractComponent.html",
2694       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getEl",
2695       "shortDoc": "<p>Retrieves the top level element representing this component.</p>\n"
2696     },
2697     {
2698       "tagname": "method",
2699       "name": "getHeight",
2700       "member": "Ext.AbstractComponent",
2701       "doc": "<p>Gets the current height of the component's underlying element.</p>\n",
2702       "params": [
2703
2704       ],
2705       "return": {
2706         "type": "Number",
2707         "doc": "\n"
2708       },
2709       "private": false,
2710       "static": false,
2711       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2712       "linenr": 2579,
2713       "html_filename": "AbstractComponent.html",
2714       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getHeight",
2715       "shortDoc": "<p>Gets the current height of the component's underlying element.</p>\n"
2716     },
2717     {
2718       "tagname": "method",
2719       "name": "getId",
2720       "member": "Ext.AbstractComponent",
2721       "doc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n",
2722       "params": [
2723
2724       ],
2725       "return": {
2726         "type": "void",
2727         "doc": "\n"
2728       },
2729       "private": false,
2730       "static": false,
2731       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2732       "linenr": 1880,
2733       "html_filename": "AbstractComponent.html",
2734       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getId",
2735       "shortDoc": "<p>Retrieves the id of this component.\nWill autogenerate an id if one has not already been set.</p>\n"
2736     },
2737     {
2738       "tagname": "method",
2739       "name": "getInsertPosition",
2740       "member": "Ext.AbstractComponent",
2741       "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",
2742       "params": [
2743         {
2744           "type": "String/Number/Element/HTMLElement",
2745           "name": "position",
2746           "doc": "<p>Index, element id or element you want\nto put this component before.</p>\n",
2747           "optional": false
2748         }
2749       ],
2750       "return": {
2751         "type": "HTMLElement",
2752         "doc": "<p>DOM element that you can use in the insertBefore</p>\n"
2753       },
2754       "private": false,
2755       "static": false,
2756       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2757       "linenr": 1513,
2758       "html_filename": "AbstractComponent.html",
2759       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getInsertPosition",
2760       "shortDoc": "This function takes the position argument passed to onRender and returns a\nDOM element that you can use in the insert..."
2761     },
2762     {
2763       "tagname": "method",
2764       "name": "getLayout",
2765       "member": "Ext.container.AbstractContainer",
2766       "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",
2767       "params": [
2768
2769       ],
2770       "return": {
2771         "type": "Ext.layout.container.AbstractContainer",
2772         "doc": "<p>The layout</p>\n"
2773       },
2774       "private": false,
2775       "static": false,
2776       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
2777       "linenr": 307,
2778       "html_filename": "AbstractContainer.html",
2779       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-getLayout",
2780       "shortDoc": "Returns the layout instance currently associated with this Container.\nIf a layout has not been instantiated yet, that..."
2781     },
2782     {
2783       "tagname": "method",
2784       "name": "getLoader",
2785       "member": "Ext.AbstractComponent",
2786       "doc": "<p>Gets the <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> for this Component.</p>\n",
2787       "params": [
2788
2789       ],
2790       "return": {
2791         "type": "Ext.ComponentLoader",
2792         "doc": "<p>The loader instance, null if it doesn't exist.</p>\n"
2793       },
2794       "private": false,
2795       "static": false,
2796       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2797       "linenr": 2587,
2798       "html_filename": "AbstractComponent.html",
2799       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getLoader",
2800       "shortDoc": "<p>Gets the <a href=\"#/api/Ext.ComponentLoader\" rel=\"Ext.ComponentLoader\" class=\"docClass\">Ext.ComponentLoader</a> for this Component.</p>\n"
2801     },
2802     {
2803       "tagname": "method",
2804       "name": "getPlugin",
2805       "member": "Ext.AbstractComponent",
2806       "doc": "<p>Retrieves a plugin by its pluginId which has been bound to this\ncomponent.</p>\n",
2807       "params": [
2808         {
2809           "type": "Object",
2810           "name": "pluginId",
2811           "doc": "\n",
2812           "optional": false
2813         }
2814       ],
2815       "return": {
2816         "type": "Ext.AbstractPlugin",
2817         "doc": "<p>pluginInstance</p>\n"
2818       },
2819       "private": false,
2820       "static": false,
2821       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2822       "linenr": 2715,
2823       "html_filename": "AbstractComponent.html",
2824       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getPlugin",
2825       "shortDoc": "<p>Retrieves a plugin by its pluginId which has been bound to this\ncomponent.</p>\n"
2826     },
2827     {
2828       "tagname": "method",
2829       "name": "getPosition",
2830       "member": "Ext.Component",
2831       "doc": "<p>Gets the current XY position of the component's underlying element.</p>\n",
2832       "params": [
2833         {
2834           "type": "Boolean",
2835           "name": "local",
2836           "doc": "<p>(optional) If true the element's left and top are returned instead of page XY (defaults to false)</p>\n",
2837           "optional": true
2838         }
2839       ],
2840       "return": {
2841         "type": "Array",
2842         "doc": "<p>The XY position of the element (e.g., [100, 200])</p>\n"
2843       },
2844       "private": false,
2845       "static": false,
2846       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
2847       "linenr": 603,
2848       "html_filename": "Component.html",
2849       "href": "Component.html#Ext-Component-method-getPosition",
2850       "shortDoc": "<p>Gets the current XY position of the component's underlying element.</p>\n"
2851     },
2852     {
2853       "tagname": "method",
2854       "name": "getSelectionModel",
2855       "member": "Ext.panel.Table",
2856       "doc": "<p>Returns the selection model being used and creates it via the configuration\nif it has not been created already.</p>\n",
2857       "params": [
2858
2859       ],
2860       "return": {
2861         "type": "Ext.selection.Model",
2862         "doc": "<p>selModel</p>\n"
2863       },
2864       "private": false,
2865       "static": false,
2866       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
2867       "linenr": 1098,
2868       "html_filename": "Table2.html",
2869       "href": "Table2.html#Ext-panel-Table-method-getSelectionModel",
2870       "shortDoc": "<p>Returns the selection model being used and creates it via the configuration\nif it has not been created already.</p>\n"
2871     },
2872     {
2873       "tagname": "method",
2874       "name": "getSize",
2875       "member": "Ext.AbstractComponent",
2876       "doc": "<p>Gets the current size of the component's underlying element.</p>\n",
2877       "params": [
2878
2879       ],
2880       "return": {
2881         "type": "Object",
2882         "doc": "<p>An object containing the element's size {width: (element width), height: (element height)}</p>\n"
2883       },
2884       "private": false,
2885       "static": false,
2886       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
2887       "linenr": 2563,
2888       "html_filename": "AbstractComponent.html",
2889       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getSize",
2890       "shortDoc": "<p>Gets the current size of the component's underlying element.</p>\n"
2891     },
2892     {
2893       "tagname": "method",
2894       "name": "getSource",
2895       "member": "Ext.grid.property.Grid",
2896       "doc": "<p>Gets the source data object containing the property data.  See <a href=\"#/api/Ext.grid.property.Grid-method-setSource\" rel=\"Ext.grid.property.Grid-method-setSource\" class=\"docClass\">setSource</a> for details regarding the\nformat of the data object.</p>\n",
2897       "params": [
2898
2899       ],
2900       "return": {
2901         "type": "Object",
2902         "doc": "<p>The data object</p>\n"
2903       },
2904       "private": false,
2905       "static": false,
2906       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
2907       "linenr": 315,
2908       "html_filename": "Grid.html",
2909       "href": "Grid.html#Ext-grid-property-Grid-method-getSource",
2910       "shortDoc": "Gets the source data object containing the property data.  See setSource for details regarding the\nformat of the data..."
2911     },
2912     {
2913       "tagname": "method",
2914       "name": "getState",
2915       "member": "Ext.state.Stateful",
2916       "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",
2917       "params": [
2918
2919       ],
2920       "return": {
2921         "type": "Object",
2922         "doc": "<p>The current state</p>\n"
2923       },
2924       "private": false,
2925       "static": false,
2926       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
2927       "linenr": 216,
2928       "html_filename": "Stateful.html",
2929       "href": "Stateful.html#Ext-state-Stateful-method-getState",
2930       "shortDoc": "Gets the current state of the object. By default this function returns null,\nit should be overridden in subclasses to..."
2931     },
2932     {
2933       "tagname": "method",
2934       "name": "getStateId",
2935       "member": "Ext.state.Stateful",
2936       "doc": "<p>Gets the state id for this object.</p>\n",
2937       "params": [
2938
2939       ],
2940       "return": {
2941         "type": "String",
2942         "doc": "<p>The state id, null if not found.</p>\n"
2943       },
2944       "private": false,
2945       "static": false,
2946       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
2947       "linenr": 237,
2948       "html_filename": "Stateful.html",
2949       "href": "Stateful.html#Ext-state-Stateful-method-getStateId",
2950       "shortDoc": "<p>Gets the state id for this object.</p>\n"
2951     },
2952     {
2953       "tagname": "method",
2954       "name": "getStore",
2955       "member": "Ext.panel.Table",
2956       "doc": "<p>Returns the store associated with this Panel.</p>\n",
2957       "params": [
2958
2959       ],
2960       "return": {
2961         "type": "Ext.data.Store",
2962         "doc": "<p>The store</p>\n"
2963       },
2964       "private": false,
2965       "static": false,
2966       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
2967       "linenr": 608,
2968       "html_filename": "Table2.html",
2969       "href": "Table2.html#Ext-panel-Table-method-getStore",
2970       "shortDoc": "<p>Returns the store associated with this Panel.</p>\n"
2971     },
2972     {
2973       "tagname": "method",
2974       "name": "getView",
2975       "member": "Ext.panel.Table",
2976       "doc": "<p>Gets the view for this panel.</p>\n",
2977       "params": [
2978
2979       ],
2980       "return": {
2981         "type": "Ext.view.Table",
2982         "doc": "\n"
2983       },
2984       "private": false,
2985       "static": false,
2986       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
2987       "linenr": 616,
2988       "html_filename": "Table2.html",
2989       "href": "Table2.html#Ext-panel-Table-method-getView",
2990       "shortDoc": "<p>Gets the view for this panel.</p>\n"
2991     },
2992     {
2993       "tagname": "method",
2994       "name": "getWidth",
2995       "member": "Ext.AbstractComponent",
2996       "doc": "<p>Gets the current width of the component's underlying element.</p>\n",
2997       "params": [
2998
2999       ],
3000       "return": {
3001         "type": "Number",
3002         "doc": "\n"
3003       },
3004       "private": false,
3005       "static": false,
3006       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3007       "linenr": 2571,
3008       "html_filename": "AbstractComponent.html",
3009       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getWidth",
3010       "shortDoc": "<p>Gets the current width of the component's underlying element.</p>\n"
3011     },
3012     {
3013       "tagname": "method",
3014       "name": "getXType",
3015       "member": "Ext.Component",
3016       "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",
3017       "params": [
3018
3019       ],
3020       "return": {
3021         "type": "String",
3022         "doc": "<p>The xtype</p>\n"
3023       },
3024       "private": false,
3025       "static": false,
3026       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3027       "linenr": 962,
3028       "html_filename": "Component.html",
3029       "href": "Component.html#Ext-Component-method-getXType",
3030       "shortDoc": "Gets the xtype for this component as registered with Ext.ComponentManager. For a list of all\navailable xtypes, see th..."
3031     },
3032     {
3033       "tagname": "method",
3034       "name": "getXTypes",
3035       "member": "Ext.AbstractComponent",
3036       "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",
3037       "params": [
3038
3039       ],
3040       "return": {
3041         "type": "String",
3042         "doc": "<p>The xtype hierarchy string</p>\n"
3043       },
3044       "private": false,
3045       "static": false,
3046       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3047       "linenr": 1938,
3048       "html_filename": "AbstractComponent.html",
3049       "href": "AbstractComponent.html#Ext-AbstractComponent-method-getXTypes",
3050       "shortDoc": "Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all\navailable xtypes, see the Ext..."
3051     },
3052     {
3053       "tagname": "method",
3054       "name": "hasActiveFx",
3055       "member": "Ext.util.Animate",
3056       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.grid.property.Grid-method-getActiveAnimation\" rel=\"Ext.grid.property.Grid-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",
3057       "params": [
3058
3059       ],
3060       "return": {
3061         "type": "Mixed",
3062         "doc": "<p>anim if element has active effects, else false</p>\n"
3063       },
3064       "private": false,
3065       "static": false,
3066       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
3067       "linenr": 369,
3068       "html_filename": "Animate.html",
3069       "href": "Animate.html#Ext-util-Animate-method-hasActiveFx",
3070       "shortDoc": "@deprecated 4.0 Replaced by getActiveAnimation\nReturns thq current animation if this object has any effects actively ..."
3071     },
3072     {
3073       "tagname": "method",
3074       "name": "hasListener",
3075       "member": "Ext.util.Observable",
3076       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
3077       "params": [
3078         {
3079           "type": "String",
3080           "name": "eventName",
3081           "doc": "<p>The name of the event to check for</p>\n",
3082           "optional": false
3083         }
3084       ],
3085       "return": {
3086         "type": "Boolean",
3087         "doc": "<p>True if the event is being listened for, else false</p>\n"
3088       },
3089       "private": false,
3090       "static": false,
3091       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3092       "linenr": 480,
3093       "html_filename": "Observable.html",
3094       "href": "Observable.html#Ext-util-Observable-method-hasListener",
3095       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
3096     },
3097     {
3098       "tagname": "method",
3099       "name": "hasUICls",
3100       "member": "Ext.AbstractComponent",
3101       "doc": "<p>Checks if there is currently a specified uiCls</p>\n",
3102       "params": [
3103         {
3104           "type": "String",
3105           "name": "cls",
3106           "doc": "<p>The cls to check</p>\n",
3107           "optional": false
3108         }
3109       ],
3110       "return": {
3111         "type": "void",
3112         "doc": "\n"
3113       },
3114       "private": false,
3115       "static": false,
3116       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3117       "linenr": 1389,
3118       "html_filename": "AbstractComponent.html",
3119       "href": "AbstractComponent.html#Ext-AbstractComponent-method-hasUICls",
3120       "shortDoc": "<p>Checks if there is currently a specified uiCls</p>\n"
3121     },
3122     {
3123       "tagname": "method",
3124       "name": "hide",
3125       "member": "Ext.Component",
3126       "doc": "<p>Hides this Component, setting it to invisible using the configured <a href=\"#/api/Ext.grid.property.Grid-cfg-hideMode\" rel=\"Ext.grid.property.Grid-cfg-hideMode\" class=\"docClass\">hideMode</a>.</p>\n",
3127       "params": [
3128         {
3129           "type": "String/Element/Component",
3130           "name": "animateTarget",
3131           "doc": "<p>Optional, and <b>only valid for <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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",
3132           "optional": false
3133         },
3134         {
3135           "type": "Function",
3136           "name": "callback",
3137           "doc": "<p>(optional) A callback function to call after the Component is hidden.</p>\n",
3138           "optional": true
3139         },
3140         {
3141           "type": "Object",
3142           "name": "scope",
3143           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Component.</p>\n",
3144           "optional": true
3145         }
3146       ],
3147       "return": {
3148         "type": "Ext.Component",
3149         "doc": "<p>this</p>\n"
3150       },
3151       "private": false,
3152       "static": false,
3153       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
3154       "linenr": 748,
3155       "html_filename": "Component.html",
3156       "href": "Component.html#Ext-Component-method-hide",
3157       "shortDoc": "<p>Hides this Component, setting it to invisible using the configured <a href=\"#/api/Ext.grid.property.Grid-cfg-hideMode\" rel=\"Ext.grid.property.Grid-cfg-hideMode\" class=\"docClass\">hideMode</a>.</p>\n"
3158     },
3159     {
3160       "tagname": "method",
3161       "name": "hideHorizontalScroller",
3162       "member": "Ext.panel.Table",
3163       "doc": "<p>Hide the verticalScroller and remove the horizontalScrollerPresentCls.</p>\n",
3164       "params": [
3165
3166       ],
3167       "return": {
3168         "type": "void",
3169         "doc": "\n"
3170       },
3171       "private": false,
3172       "static": false,
3173       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
3174       "linenr": 785,
3175       "html_filename": "Table2.html",
3176       "href": "Table2.html#Ext-panel-Table-method-hideHorizontalScroller",
3177       "shortDoc": "<p>Hide the verticalScroller and remove the horizontalScrollerPresentCls.</p>\n"
3178     },
3179     {
3180       "tagname": "method",
3181       "name": "hideVerticalScroller",
3182       "member": "Ext.panel.Table",
3183       "doc": "<p>Hide the verticalScroller and remove the verticalScrollerPresentCls.</p>\n",
3184       "params": [
3185
3186       ],
3187       "return": {
3188         "type": "void",
3189         "doc": "\n"
3190       },
3191       "private": false,
3192       "static": false,
3193       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
3194       "linenr": 818,
3195       "html_filename": "Table2.html",
3196       "href": "Table2.html#Ext-panel-Table-method-hideVerticalScroller",
3197       "shortDoc": "<p>Hide the verticalScroller and remove the verticalScrollerPresentCls.</p>\n"
3198     },
3199     {
3200       "tagname": "method",
3201       "name": "insert",
3202       "member": "Ext.container.AbstractContainer",
3203       "doc": "<p>Inserts a Component into this Container at a specified index. Fires the\n<a href=\"#/api/Ext.grid.property.Grid-event-beforeadd\" rel=\"Ext.grid.property.Grid-event-beforeadd\" class=\"docClass\">beforeadd</a> event before inserting, then fires the <a href=\"#/api/Ext.grid.property.Grid-event-add\" rel=\"Ext.grid.property.Grid-event-add\" class=\"docClass\">add</a> event after the\nComponent has been inserted.</p>\n",
3204       "params": [
3205         {
3206           "type": "Number",
3207           "name": "index",
3208           "doc": "<p>The index at which the Component will be inserted\ninto the Container's items collection</p>\n",
3209           "optional": false
3210         },
3211         {
3212           "type": "Ext.Component",
3213           "name": "component",
3214           "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",
3215           "optional": false
3216         }
3217       ],
3218       "return": {
3219         "type": "Ext.Component",
3220         "doc": "<p>component The Component (or config object) that was\ninserted with the Container's default config values applied.</p>\n"
3221       },
3222       "private": false,
3223       "static": false,
3224       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3225       "linenr": 547,
3226       "html_filename": "AbstractContainer.html",
3227       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-insert",
3228       "shortDoc": "Inserts a Component into this Container at a specified index. Fires the\nbeforeadd event before inserting, then fires ..."
3229     },
3230     {
3231       "tagname": "method",
3232       "name": "insertDocked",
3233       "member": "Ext.panel.AbstractPanel",
3234       "doc": "<p>Inserts docked item(s) to the panel at the indicated position.</p>\n",
3235       "params": [
3236         {
3237           "type": "Number",
3238           "name": "pos",
3239           "doc": "<p>The index at which the Component will be inserted</p>\n",
3240           "optional": false
3241         },
3242         {
3243           "type": "Object/Array",
3244           "name": "component",
3245           "doc": "<p>. The Component or array of components to add. The components\nmust include a 'dock' paramater on each component to indicate where it should be docked ('top', 'right',\n'bottom', 'left').</p>\n",
3246           "optional": false
3247         }
3248       ],
3249       "return": {
3250         "type": "void",
3251         "doc": "\n"
3252       },
3253       "private": false,
3254       "static": false,
3255       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
3256       "linenr": 278,
3257       "html_filename": "AbstractPanel.html",
3258       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-insertDocked",
3259       "shortDoc": "<p>Inserts docked item(s) to the panel at the indicated position.</p>\n"
3260     },
3261     {
3262       "tagname": "method",
3263       "name": "invalidateScroller",
3264       "member": "Ext.panel.Table",
3265       "doc": "<p>Invalides scrollers that are present and forces a recalculation.\n(Not related to showing/hiding the scrollers)</p>\n",
3266       "params": [
3267
3268       ],
3269       "return": {
3270         "type": "void",
3271         "doc": "\n"
3272       },
3273       "private": false,
3274       "static": false,
3275       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
3276       "linenr": 858,
3277       "html_filename": "Table2.html",
3278       "href": "Table2.html#Ext-panel-Table-method-invalidateScroller",
3279       "shortDoc": "<p>Invalides scrollers that are present and forces a recalculation.\n(Not related to showing/hiding the scrollers)</p>\n"
3280     },
3281     {
3282       "tagname": "method",
3283       "name": "is",
3284       "member": "Ext.AbstractComponent",
3285       "doc": "<p>Tests whether this Component matches the selector string.</p>\n",
3286       "params": [
3287         {
3288           "type": "String",
3289           "name": "selector",
3290           "doc": "<p>The selector string to test against.</p>\n",
3291           "optional": false
3292         }
3293       ],
3294       "return": {
3295         "type": "Boolean",
3296         "doc": "<p>True if this Component matches the selector.</p>\n"
3297       },
3298       "private": false,
3299       "static": false,
3300       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3301       "linenr": 1719,
3302       "html_filename": "AbstractComponent.html",
3303       "href": "AbstractComponent.html#Ext-AbstractComponent-method-is",
3304       "shortDoc": "<p>Tests whether this Component matches the selector string.</p>\n"
3305     },
3306     {
3307       "tagname": "method",
3308       "name": "isDescendantOf",
3309       "member": "Ext.AbstractComponent",
3310       "doc": "<p>Determines whether this component is the descendant of a particular container.</p>\n",
3311       "params": [
3312         {
3313           "type": "Ext.Container",
3314           "name": "container",
3315           "doc": "\n",
3316           "optional": false
3317         }
3318       ],
3319       "return": {
3320         "type": "Boolean",
3321         "doc": "<p>isDescendant</p>\n"
3322       },
3323       "private": false,
3324       "static": false,
3325       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3326       "linenr": 2731,
3327       "html_filename": "AbstractComponent.html",
3328       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDescendantOf",
3329       "shortDoc": "<p>Determines whether this component is the descendant of a particular container.</p>\n"
3330     },
3331     {
3332       "tagname": "method",
3333       "name": "isDisabled",
3334       "member": "Ext.AbstractComponent",
3335       "doc": "<p>Method to determine whether this Component is currently disabled.</p>\n",
3336       "params": [
3337
3338       ],
3339       "return": {
3340         "type": "Boolean",
3341         "doc": "<p>the disabled state of this Component.</p>\n"
3342       },
3343       "private": false,
3344       "static": false,
3345       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3346       "linenr": 2115,
3347       "html_filename": "AbstractComponent.html",
3348       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDisabled",
3349       "shortDoc": "<p>Method to determine whether this Component is currently disabled.</p>\n"
3350     },
3351     {
3352       "tagname": "method",
3353       "name": "isDraggable",
3354       "member": "Ext.AbstractComponent",
3355       "doc": "<p>Method to determine whether this Component is draggable.</p>\n",
3356       "params": [
3357
3358       ],
3359       "return": {
3360         "type": "Boolean",
3361         "doc": "<p>the draggable state of this component.</p>\n"
3362       },
3363       "private": false,
3364       "static": false,
3365       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3366       "linenr": 2292,
3367       "html_filename": "AbstractComponent.html",
3368       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDraggable",
3369       "shortDoc": "<p>Method to determine whether this Component is draggable.</p>\n"
3370     },
3371     {
3372       "tagname": "method",
3373       "name": "isDroppable",
3374       "member": "Ext.AbstractComponent",
3375       "doc": "<p>Method to determine whether this Component is droppable.</p>\n",
3376       "params": [
3377
3378       ],
3379       "return": {
3380         "type": "Boolean",
3381         "doc": "<p>the droppable state of this component.</p>\n"
3382       },
3383       "private": false,
3384       "static": false,
3385       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3386       "linenr": 2300,
3387       "html_filename": "AbstractComponent.html",
3388       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isDroppable",
3389       "shortDoc": "<p>Method to determine whether this Component is droppable.</p>\n"
3390     },
3391     {
3392       "tagname": "method",
3393       "name": "isFloating",
3394       "member": "Ext.AbstractComponent",
3395       "doc": "<p>Method to determine whether this Component is floating.</p>\n",
3396       "params": [
3397
3398       ],
3399       "return": {
3400         "type": "Boolean",
3401         "doc": "<p>the floating state of this component.</p>\n"
3402       },
3403       "private": false,
3404       "static": false,
3405       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3406       "linenr": 2284,
3407       "html_filename": "AbstractComponent.html",
3408       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isFloating",
3409       "shortDoc": "<p>Method to determine whether this Component is floating.</p>\n"
3410     },
3411     {
3412       "tagname": "method",
3413       "name": "isHidden",
3414       "member": "Ext.AbstractComponent",
3415       "doc": "<p>Method to determine whether this Component is currently set to hidden.</p>\n",
3416       "params": [
3417
3418       ],
3419       "return": {
3420         "type": "Boolean",
3421         "doc": "<p>the hidden state of this Component.</p>\n"
3422       },
3423       "private": false,
3424       "static": false,
3425       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3426       "linenr": 2131,
3427       "html_filename": "AbstractComponent.html",
3428       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isHidden",
3429       "shortDoc": "<p>Method to determine whether this Component is currently set to hidden.</p>\n"
3430     },
3431     {
3432       "tagname": "method",
3433       "name": "isVisible",
3434       "member": "Ext.AbstractComponent",
3435       "doc": "<p>Returns true if this component is visible.</p>\n",
3436       "params": [
3437         {
3438           "type": "Boolean",
3439           "name": "deep",
3440           "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",
3441           "optional": false
3442         }
3443       ],
3444       "return": {
3445         "type": "Boolean",
3446         "doc": "<p>True if this component is visible, false otherwise.</p>\n"
3447       },
3448       "private": false,
3449       "static": false,
3450       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3451       "linenr": 2015,
3452       "html_filename": "AbstractComponent.html",
3453       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isVisible",
3454       "shortDoc": "<p>Returns true if this component is visible.</p>\n"
3455     },
3456     {
3457       "tagname": "method",
3458       "name": "isXType",
3459       "member": "Ext.AbstractComponent",
3460       "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",
3461       "params": [
3462         {
3463           "type": "String",
3464           "name": "xtype",
3465           "doc": "<p>The xtype to check for this Component</p>\n",
3466           "optional": false
3467         },
3468         {
3469           "type": "Boolean",
3470           "name": "shallow",
3471           "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",
3472           "optional": true
3473         }
3474       ],
3475       "return": {
3476         "type": "Boolean",
3477         "doc": "<p>True if this component descends from the specified xtype, false otherwise.</p>\n"
3478       },
3479       "private": false,
3480       "static": false,
3481       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3482       "linenr": 1907,
3483       "html_filename": "AbstractComponent.html",
3484       "href": "AbstractComponent.html#Ext-AbstractComponent-method-isXType",
3485       "shortDoc": "Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended\nfrom th..."
3486     },
3487     {
3488       "tagname": "method",
3489       "name": "move",
3490       "member": "Ext.container.AbstractContainer",
3491       "doc": "<p>Moves a Component within the Container</p>\n",
3492       "params": [
3493         {
3494           "type": "Number",
3495           "name": "fromIdx",
3496           "doc": "<p>The index the Component you wish to move is currently at.</p>\n",
3497           "optional": false
3498         },
3499         {
3500           "type": "Number",
3501           "name": "toIdx",
3502           "doc": "<p>The new index for the Component.</p>\n",
3503           "optional": false
3504         }
3505       ],
3506       "return": {
3507         "type": "Ext.Component",
3508         "doc": "<p>component The Component (or config object) that was moved.</p>\n"
3509       },
3510       "private": false,
3511       "static": false,
3512       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3513       "linenr": 569,
3514       "html_filename": "AbstractContainer.html",
3515       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-move",
3516       "shortDoc": "<p>Moves a Component within the Container</p>\n"
3517     },
3518     {
3519       "tagname": "method",
3520       "name": "nextNode",
3521       "member": "Ext.AbstractComponent",
3522       "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.grid.property.Grid--pnextSibling\" rel=\"Ext.grid.property.Grid--pnextSibling\" class=\"docClass\">pnextSibling</a>.</p>\n\n",
3523       "params": [
3524         {
3525           "type": "String",
3526           "name": "selector",
3527           "doc": "<p>Optional A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the following nodes.</p>\n",
3528           "optional": false
3529         },
3530         {
3531           "type": "Object",
3532           "name": "includeSelf",
3533           "doc": "\n",
3534           "optional": false
3535         }
3536       ],
3537       "return": {
3538         "type": "void",
3539         "doc": "<p>The next node (or the next node which matches the selector). Returns null if there is no matching node.</p>\n"
3540       },
3541       "private": false,
3542       "static": false,
3543       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3544       "linenr": 1845,
3545       "html_filename": "AbstractComponent.html",
3546       "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextNode",
3547       "shortDoc": "Returns the next node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings, and..."
3548     },
3549     {
3550       "tagname": "method",
3551       "name": "nextSibling",
3552       "member": "Ext.AbstractComponent",
3553       "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.grid.property.Grid-method-nextNode\" rel=\"Ext.grid.property.Grid-method-nextNode\" class=\"docClass\">nextNode</a></p>\n\n",
3554       "params": [
3555         {
3556           "type": "String",
3557           "name": "selector",
3558           "doc": "<p>Optional A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the following items.</p>\n",
3559           "optional": false
3560         }
3561       ],
3562       "return": {
3563         "type": "void",
3564         "doc": "<p>The next sibling (or the next sibling which matches the selector). Returns null if there is no matching sibling.</p>\n"
3565       },
3566       "private": false,
3567       "static": false,
3568       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3569       "linenr": 1749,
3570       "html_filename": "AbstractComponent.html",
3571       "href": "AbstractComponent.html#Ext-AbstractComponent-method-nextSibling",
3572       "shortDoc": "Returns the next sibling of this Component.\n\n\nOptionally selects the next sibling which matches the passed ComponentQ..."
3573     },
3574     {
3575       "tagname": "method",
3576       "name": "observe",
3577       "member": "Ext.util.Observable",
3578       "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",
3579       "params": [
3580         {
3581           "type": "Function",
3582           "name": "c",
3583           "doc": "<p>The class constructor to make observable.</p>\n",
3584           "optional": false
3585         },
3586         {
3587           "type": "Object",
3588           "name": "listeners",
3589           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.grid.property.Grid-method-addListener\" rel=\"Ext.grid.property.Grid-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
3590           "optional": false
3591         }
3592       ],
3593       "return": {
3594         "type": "void",
3595         "doc": "\n"
3596       },
3597       "private": false,
3598       "static": true,
3599       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3600       "linenr": 69,
3601       "html_filename": "Observable.html",
3602       "href": "Observable.html#Ext-util-Observable-method-observe",
3603       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
3604     },
3605     {
3606       "tagname": "method",
3607       "name": "on",
3608       "member": "Ext.util.Observable",
3609       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.grid.property.Grid-method-addListener\" rel=\"Ext.grid.property.Grid-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
3610       "params": [
3611         {
3612           "type": "String",
3613           "name": "eventName",
3614           "doc": "<p>The type of event to listen for</p>\n",
3615           "optional": false
3616         },
3617         {
3618           "type": "Function",
3619           "name": "handler",
3620           "doc": "<p>The method the event invokes</p>\n",
3621           "optional": false
3622         },
3623         {
3624           "type": "Object",
3625           "name": "scope",
3626           "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",
3627           "optional": true
3628         },
3629         {
3630           "type": "Object",
3631           "name": "options",
3632           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
3633           "optional": true
3634         }
3635       ],
3636       "return": {
3637         "type": "void",
3638         "doc": "\n"
3639       },
3640       "private": false,
3641       "static": false,
3642       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3643       "linenr": 616,
3644       "html_filename": "Observable.html",
3645       "href": "Observable.html#Ext-util-Observable-method-on",
3646       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.grid.property.Grid-method-addListener\" rel=\"Ext.grid.property.Grid-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
3647     },
3648     {
3649       "tagname": "method",
3650       "name": "previousNode",
3651       "member": "Ext.AbstractComponent",
3652       "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.grid.property.Grid-method-previousSibling\" rel=\"Ext.grid.property.Grid-method-previousSibling\" class=\"docClass\">previousSibling</a>.</p>\n\n",
3653       "params": [
3654         {
3655           "type": "String",
3656           "name": "selector",
3657           "doc": "<p>Optional. A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the preceding nodes.</p>\n",
3658           "optional": false
3659         },
3660         {
3661           "type": "Object",
3662           "name": "includeSelf",
3663           "doc": "\n",
3664           "optional": false
3665         }
3666       ],
3667       "return": {
3668         "type": "void",
3669         "doc": "<p>The previous node (or the previous node which matches the selector). Returns null if there is no matching node.</p>\n"
3670       },
3671       "private": false,
3672       "static": false,
3673       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3674       "linenr": 1809,
3675       "html_filename": "AbstractComponent.html",
3676       "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousNode",
3677       "shortDoc": "Returns the previous node in the Component tree in tree traversal order.\n\n\nNote that this is not limited to siblings,..."
3678     },
3679     {
3680       "tagname": "method",
3681       "name": "previousSibling",
3682       "member": "Ext.AbstractComponent",
3683       "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.grid.property.Grid-method-previousNode\" rel=\"Ext.grid.property.Grid-method-previousNode\" class=\"docClass\">previousNode</a></p>\n\n",
3684       "params": [
3685         {
3686           "type": "String",
3687           "name": "selector",
3688           "doc": "<p>Optional. A <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">ComponentQuery</a> selector to filter the preceding items.</p>\n",
3689           "optional": false
3690         }
3691       ],
3692       "return": {
3693         "type": "void",
3694         "doc": "<p>The previous sibling (or the previous sibling which matches the selector). Returns null if there is no matching sibling.</p>\n"
3695       },
3696       "private": false,
3697       "static": false,
3698       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3699       "linenr": 1779,
3700       "html_filename": "AbstractComponent.html",
3701       "href": "AbstractComponent.html#Ext-AbstractComponent-method-previousSibling",
3702       "shortDoc": "Returns the previous sibling of this Component.\n\n\nOptionally selects the previous sibling which matches the passed Co..."
3703     },
3704     {
3705       "tagname": "method",
3706       "name": "query",
3707       "member": "Ext.container.AbstractContainer",
3708       "doc": "<p>Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this container as its root.</p>\n",
3709       "params": [
3710         {
3711           "type": "String",
3712           "name": "selector",
3713           "doc": "<p>Selector complying to an <a href=\"#/api/Ext.ComponentQuery\" rel=\"Ext.ComponentQuery\" class=\"docClass\">Ext.ComponentQuery</a> selector</p>\n",
3714           "optional": false
3715         }
3716       ],
3717       "return": {
3718         "type": "Array",
3719         "doc": "<p>Ext.Component's which matched the selector</p>\n"
3720       },
3721       "private": false,
3722       "static": false,
3723       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3724       "linenr": 772,
3725       "html_filename": "AbstractContainer.html",
3726       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-query",
3727       "shortDoc": "Retrieves all descendant components which match the passed selector.\nExecutes an Ext.ComponentQuery.query using this ..."
3728     },
3729     {
3730       "tagname": "method",
3731       "name": "relayEvents",
3732       "member": "Ext.util.Observable",
3733       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
3734       "params": [
3735         {
3736           "type": "Object",
3737           "name": "origin",
3738           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
3739           "optional": false
3740         },
3741         {
3742           "type": "Array",
3743           "name": "events",
3744           "doc": "<p>Array of event names to relay.</p>\n",
3745           "optional": false
3746         },
3747         {
3748           "type": "Object",
3749           "name": "prefix",
3750           "doc": "\n",
3751           "optional": false
3752         }
3753       ],
3754       "return": {
3755         "type": "void",
3756         "doc": "\n"
3757       },
3758       "private": false,
3759       "static": false,
3760       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3761       "linenr": 520,
3762       "html_filename": "Observable.html",
3763       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
3764       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
3765     },
3766     {
3767       "tagname": "method",
3768       "name": "releaseCapture",
3769       "member": "Ext.util.Observable",
3770       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
3771       "params": [
3772         {
3773           "type": "Observable",
3774           "name": "o",
3775           "doc": "<p>The Observable to release</p>\n",
3776           "optional": false
3777         }
3778       ],
3779       "return": {
3780         "type": "void",
3781         "doc": "\n"
3782       },
3783       "private": false,
3784       "static": true,
3785       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3786       "linenr": 46,
3787       "html_filename": "Observable.html",
3788       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
3789       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
3790     },
3791     {
3792       "tagname": "method",
3793       "name": "remove",
3794       "member": "Ext.container.AbstractContainer",
3795       "doc": "<p>Removes a component from this container.  Fires the <a href=\"#/api/Ext.grid.property.Grid-event-beforeremove\" rel=\"Ext.grid.property.Grid-event-beforeremove\" class=\"docClass\">beforeremove</a> event before removing, then fires\nthe <a href=\"#/api/Ext.grid.property.Grid-event-remove\" rel=\"Ext.grid.property.Grid-event-remove\" class=\"docClass\">remove</a> event after the component has been removed.</p>\n",
3796       "params": [
3797         {
3798           "type": "Component/String",
3799           "name": "component",
3800           "doc": "<p>The component reference or id to remove.</p>\n",
3801           "optional": false
3802         },
3803         {
3804           "type": "Boolean",
3805           "name": "autoDestroy",
3806           "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.grid.property.Grid-cfg-autoDestroy\" rel=\"Ext.grid.property.Grid-cfg-autoDestroy\" class=\"docClass\">autoDestroy</a> config.</p>\n",
3807           "optional": true
3808         }
3809       ],
3810       "return": {
3811         "type": "Ext.Component",
3812         "doc": "<p>component The Component that was removed.</p>\n"
3813       },
3814       "private": false,
3815       "static": false,
3816       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3817       "linenr": 600,
3818       "html_filename": "AbstractContainer.html",
3819       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-remove",
3820       "shortDoc": "Removes a component from this container.  Fires the beforeremove event before removing, then fires\nthe remove event a..."
3821     },
3822     {
3823       "tagname": "method",
3824       "name": "removeAll",
3825       "member": "Ext.container.AbstractContainer",
3826       "doc": "<p>Removes all components from this container.</p>\n",
3827       "params": [
3828         {
3829           "type": "Boolean",
3830           "name": "autoDestroy",
3831           "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.grid.property.Grid-cfg-autoDestroy\" rel=\"Ext.grid.property.Grid-cfg-autoDestroy\" class=\"docClass\">autoDestroy</a> config.</p>\n",
3832           "optional": true
3833         }
3834       ],
3835       "return": {
3836         "type": "Array",
3837         "doc": "<p>Array of the destroyed components</p>\n"
3838       },
3839       "private": false,
3840       "static": false,
3841       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
3842       "linenr": 653,
3843       "html_filename": "AbstractContainer.html",
3844       "href": "AbstractContainer.html#Ext-container-AbstractContainer-method-removeAll",
3845       "shortDoc": "<p>Removes all components from this container.</p>\n"
3846     },
3847     {
3848       "tagname": "method",
3849       "name": "removeCls",
3850       "member": "Ext.AbstractComponent",
3851       "doc": "<p>Removes a CSS class from the top level element representing this component.</p>\n",
3852       "params": [
3853         {
3854           "type": "Object",
3855           "name": "className",
3856           "doc": "\n",
3857           "optional": false
3858         }
3859       ],
3860       "return": {
3861         "type": "Ext.Component",
3862         "doc": "<p>Returns the Component to allow method chaining.</p>\n"
3863       },
3864       "private": false,
3865       "static": false,
3866       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3867       "linenr": 2171,
3868       "html_filename": "AbstractComponent.html",
3869       "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeCls",
3870       "shortDoc": "<p>Removes a CSS class from the top level element representing this component.</p>\n"
3871     },
3872     {
3873       "tagname": "method",
3874       "name": "removeClsWithUI",
3875       "member": "Ext.AbstractComponent",
3876       "doc": "<p>Removes a cls to the uiCls array, which will also call <a href=\"#/api/Ext.grid.property.Grid--removeUIClsToElement\" rel=\"Ext.grid.property.Grid--removeUIClsToElement\" class=\"docClass\">removeUIClsToElement</a> and removes\nit from all elements of this component.</p>\n",
3877       "params": [
3878         {
3879           "type": "String/Array",
3880           "name": "cls",
3881           "doc": "<p>A string or an array of strings to remove to the uiCls</p>\n",
3882           "optional": false
3883         }
3884       ],
3885       "return": {
3886         "type": "void",
3887         "doc": "\n"
3888       },
3889       "private": false,
3890       "static": false,
3891       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
3892       "linenr": 1368,
3893       "html_filename": "AbstractComponent.html",
3894       "href": "AbstractComponent.html#Ext-AbstractComponent-method-removeClsWithUI",
3895       "shortDoc": "Removes a cls to the uiCls array, which will also call removeUIClsToElement and removes\nit from all elements of this ..."
3896     },
3897     {
3898       "tagname": "method",
3899       "name": "removeDocked",
3900       "member": "Ext.panel.AbstractPanel",
3901       "doc": "<p>Removes the docked item from the panel.</p>\n",
3902       "params": [
3903         {
3904           "type": "Ext.Component",
3905           "name": "item",
3906           "doc": "<p>. The Component to remove.</p>\n",
3907           "optional": false
3908         },
3909         {
3910           "type": "Boolean",
3911           "name": "autoDestroy",
3912           "doc": "<p>(optional) Destroy the component after removal.</p>\n",
3913           "optional": true
3914         }
3915       ],
3916       "return": {
3917         "type": "void",
3918         "doc": "\n"
3919       },
3920       "private": false,
3921       "static": false,
3922       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
3923       "linenr": 289,
3924       "html_filename": "AbstractPanel.html",
3925       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-method-removeDocked",
3926       "shortDoc": "<p>Removes the docked item from the panel.</p>\n"
3927     },
3928     {
3929       "tagname": "method",
3930       "name": "removeListener",
3931       "member": "Ext.util.Observable",
3932       "doc": "<p>Removes an event handler.</p>\n",
3933       "params": [
3934         {
3935           "type": "String",
3936           "name": "eventName",
3937           "doc": "<p>The type of event the handler was associated with.</p>\n",
3938           "optional": false
3939         },
3940         {
3941           "type": "Function",
3942           "name": "handler",
3943           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.grid.property.Grid-method-addListener\" rel=\"Ext.grid.property.Grid-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
3944           "optional": false
3945         },
3946         {
3947           "type": "Object",
3948           "name": "scope",
3949           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
3950           "optional": true
3951         }
3952       ],
3953       "return": {
3954         "type": "void",
3955         "doc": "\n"
3956       },
3957       "private": false,
3958       "static": false,
3959       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
3960       "linenr": 352,
3961       "html_filename": "Observable.html",
3962       "href": "Observable.html#Ext-util-Observable-method-removeListener",
3963       "shortDoc": "<p>Removes an event handler.</p>\n"
3964     },
3965     {
3966       "tagname": "method",
3967       "name": "removeManagedListener",
3968       "member": "Ext.util.Observable",
3969       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.grid.property.Grid--mon\" rel=\"Ext.grid.property.Grid--mon\" class=\"docClass\">mon</a> method.</p>\n",
3970       "params": [
3971         {
3972           "type": "Observable|Element",
3973           "name": "item",
3974           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
3975           "optional": false
3976         },
3977         {
3978           "type": "Object|String",
3979           "name": "ename",
3980           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
3981           "optional": false
3982         },
3983         {
3984           "type": "Function",
3985           "name": "fn",
3986           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
3987           "optional": false
3988         },
3989         {
3990           "type": "Object",
3991           "name": "scope",
3992           "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",
3993           "optional": false
3994         }
3995       ],
3996       "return": {
3997         "type": "void",
3998         "doc": "\n"
3999       },
4000       "private": false,
4001       "static": false,
4002       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
4003       "linenr": 196,
4004       "html_filename": "Observable.html",
4005       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
4006       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.grid.property.Grid--mon\" rel=\"Ext.grid.property.Grid--mon\" class=\"docClass\">mon</a> method.</p>\n"
4007     },
4008     {
4009       "tagname": "method",
4010       "name": "removeProperty",
4011       "member": "Ext.grid.property.Grid",
4012       "doc": "<p>Removes a property from the grid.</p>\n",
4013       "params": [
4014         {
4015           "type": "String",
4016           "name": "prop",
4017           "doc": "<p>The name of the property to remove</p>\n",
4018           "optional": false
4019         }
4020       ],
4021       "return": {
4022         "type": "void",
4023         "doc": "\n"
4024       },
4025       "private": false,
4026       "static": false,
4027       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
4028       "linenr": 334,
4029       "html_filename": "Grid.html",
4030       "href": "Grid.html#Ext-grid-property-Grid-method-removeProperty",
4031       "shortDoc": "<p>Removes a property from the grid.</p>\n"
4032     },
4033     {
4034       "tagname": "method",
4035       "name": "resumeEvents",
4036       "member": "Ext.util.Observable",
4037       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.grid.property.Grid-method-suspendEvents\" rel=\"Ext.grid.property.Grid-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",
4038       "params": [
4039
4040       ],
4041       "return": {
4042         "type": "void",
4043         "doc": "\n"
4044       },
4045       "private": false,
4046       "static": false,
4047       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
4048       "linenr": 502,
4049       "html_filename": "Observable.html",
4050       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
4051       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
4052     },
4053     {
4054       "tagname": "method",
4055       "name": "scrollByDeltaX",
4056       "member": "Ext.panel.Table",
4057       "doc": "<p>Scrolls the TablePanel by deltaX</p>\n",
4058       "params": [
4059         {
4060           "type": "Number",
4061           "name": "deltaY",
4062           "doc": "\n",
4063           "optional": false
4064         }
4065       ],
4066       "return": {
4067         "type": "void",
4068         "doc": "\n"
4069       },
4070       "private": false,
4071       "static": false,
4072       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
4073       "linenr": 1060,
4074       "html_filename": "Table2.html",
4075       "href": "Table2.html#Ext-panel-Table-method-scrollByDeltaX",
4076       "shortDoc": "<p>Scrolls the TablePanel by deltaX</p>\n"
4077     },
4078     {
4079       "tagname": "method",
4080       "name": "scrollByDeltaY",
4081       "member": "Ext.panel.Table",
4082       "doc": "<p>Scrolls the TablePanel by deltaY</p>\n",
4083       "params": [
4084         {
4085           "type": "Number",
4086           "name": "deltaY",
4087           "doc": "\n",
4088           "optional": false
4089         }
4090       ],
4091       "return": {
4092         "type": "void",
4093         "doc": "\n"
4094       },
4095       "private": false,
4096       "static": false,
4097       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
4098       "linenr": 1046,
4099       "html_filename": "Table2.html",
4100       "href": "Table2.html#Ext-panel-Table-method-scrollByDeltaY",
4101       "shortDoc": "<p>Scrolls the TablePanel by deltaY</p>\n"
4102     },
4103     {
4104       "tagname": "method",
4105       "name": "sequenceFx",
4106       "member": "Ext.util.Animate",
4107       "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.grid.property.Grid-method-syncFx\" rel=\"Ext.grid.property.Grid-method-syncFx\" class=\"docClass\">syncFx</a>.</p>\n",
4108       "params": [
4109
4110       ],
4111       "return": {
4112         "type": "Object",
4113         "doc": "<p>this</p>\n"
4114       },
4115       "private": false,
4116       "static": false,
4117       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4118       "linenr": 357,
4119       "html_filename": "Animate.html",
4120       "href": "Animate.html#Ext-util-Animate-method-sequenceFx",
4121       "shortDoc": "Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite ..."
4122     },
4123     {
4124       "tagname": "method",
4125       "name": "setActive",
4126       "member": "Ext.util.Floating",
4127       "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.grid.property.Grid-event-activate\" rel=\"Ext.grid.property.Grid-event-activate\" class=\"docClass\">activate</a> or <a href=\"#/api/Ext.grid.property.Grid-event-deactivate\" rel=\"Ext.grid.property.Grid-event-deactivate\" class=\"docClass\">deactivate</a> event depending on which action occurred.</p>\n\n",
4128       "params": [
4129         {
4130           "type": "Boolean",
4131           "name": "active",
4132           "doc": "<p>True to activate the Component, false to deactivate it (defaults to false)</p>\n",
4133           "optional": false
4134         },
4135         {
4136           "type": "Component",
4137           "name": "newActive",
4138           "doc": "<p>The newly active Component which is taking over topmost zIndex position.</p>\n",
4139           "optional": false
4140         }
4141       ],
4142       "return": {
4143         "type": "void",
4144         "doc": "\n"
4145       },
4146       "private": false,
4147       "static": false,
4148       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
4149       "linenr": 216,
4150       "html_filename": "Floating.html",
4151       "href": "Floating.html#Ext-util-Floating-method-setActive",
4152       "shortDoc": "This method is called internally by Ext.ZIndexManager to signal that a floating\nComponent has either been moved to th..."
4153     },
4154     {
4155       "tagname": "method",
4156       "name": "setAutoScroll",
4157       "member": "Ext.Component",
4158       "doc": "<p>Sets the overflow on the content element of the component.</p>\n",
4159       "params": [
4160         {
4161           "type": "Boolean",
4162           "name": "scroll",
4163           "doc": "<p>True to allow the Component to auto scroll.</p>\n",
4164           "optional": false
4165         }
4166       ],
4167       "return": {
4168         "type": "Ext.Component",
4169         "doc": "<p>this</p>\n"
4170       },
4171       "private": false,
4172       "static": false,
4173       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4174       "linenr": 359,
4175       "html_filename": "Component.html",
4176       "href": "Component.html#Ext-Component-method-setAutoScroll",
4177       "shortDoc": "<p>Sets the overflow on the content element of the component.</p>\n"
4178     },
4179     {
4180       "tagname": "method",
4181       "name": "setDisabled",
4182       "member": "Ext.AbstractComponent",
4183       "doc": "<p>Enable or disable the component.</p>\n",
4184       "params": [
4185         {
4186           "type": "Boolean",
4187           "name": "disabled",
4188           "doc": "\n",
4189           "optional": false
4190         }
4191       ],
4192       "return": {
4193         "type": "void",
4194         "doc": "\n"
4195       },
4196       "private": false,
4197       "static": false,
4198       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4199       "linenr": 2123,
4200       "html_filename": "AbstractComponent.html",
4201       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDisabled",
4202       "shortDoc": "<p>Enable or disable the component.</p>\n"
4203     },
4204     {
4205       "tagname": "method",
4206       "name": "setDocked",
4207       "member": "Ext.AbstractComponent",
4208       "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",
4209       "params": [
4210         {
4211           "type": "Object",
4212           "name": "dock",
4213           "doc": "\n",
4214           "optional": false
4215         },
4216         {
4217           "type": "Object",
4218           "name": "layoutParent",
4219           "doc": "\n",
4220           "optional": false
4221         }
4222       ],
4223       "return": {
4224         "type": "Component",
4225         "doc": "<p>this</p>\n"
4226       },
4227       "private": false,
4228       "static": false,
4229       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4230       "linenr": 2646,
4231       "html_filename": "AbstractComponent.html",
4232       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setDocked",
4233       "shortDoc": "Sets the dock position of this component in its parent panel. Note that\nthis only has effect if this item is part of ..."
4234     },
4235     {
4236       "tagname": "method",
4237       "name": "setHeight",
4238       "member": "Ext.AbstractComponent",
4239       "doc": "<p>Sets the height of the component.  This method fires the <a href=\"#/api/Ext.grid.property.Grid-event-resize\" rel=\"Ext.grid.property.Grid-event-resize\" class=\"docClass\">resize</a> event.</p>\n",
4240       "params": [
4241         {
4242           "type": "Number",
4243           "name": "height",
4244           "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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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",
4245           "optional": false
4246         }
4247       ],
4248       "return": {
4249         "type": "Ext.Component",
4250         "doc": "<p>this</p>\n"
4251       },
4252       "private": false,
4253       "static": false,
4254       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4255       "linenr": 2550,
4256       "html_filename": "AbstractComponent.html",
4257       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setHeight",
4258       "shortDoc": "<p>Sets the height of the component.  This method fires the <a href=\"#/api/Ext.grid.property.Grid-event-resize\" rel=\"Ext.grid.property.Grid-event-resize\" class=\"docClass\">resize</a> event.</p>\n"
4259     },
4260     {
4261       "tagname": "method",
4262       "name": "setIconCls",
4263       "member": "Ext.panel.Panel",
4264       "doc": "<p>Set the iconCls for the panel&#39;s header. See <a href=\"#/api/Ext.panel.Header--iconCls\" rel=\"Ext.panel.Header--iconCls\" class=\"docClass\">Ext.panel.Header.iconCls</a>.</p>\n",
4265       "params": [
4266         {
4267           "type": "String",
4268           "name": "newIconCls",
4269           "doc": "\n",
4270           "optional": false
4271         }
4272       ],
4273       "return": {
4274         "type": "void",
4275         "doc": "\n"
4276       },
4277       "private": false,
4278       "static": false,
4279       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
4280       "linenr": 416,
4281       "html_filename": "Panel3.html",
4282       "href": "Panel3.html#Ext-panel-Panel-method-setIconCls",
4283       "shortDoc": "<p>Set the iconCls for the panel&#39;s header. See <a href=\"#/api/Ext.panel.Header--iconCls\" rel=\"Ext.panel.Header--iconCls\" class=\"docClass\">Ext.panel.Header.iconCls</a>.</p>\n"
4284     },
4285     {
4286       "tagname": "method",
4287       "name": "setLoading",
4288       "member": "Ext.AbstractComponent",
4289       "doc": "<p>This method allows you to show or hide a LoadMask on top of this component.</p>\n",
4290       "params": [
4291         {
4292           "type": "Boolean/Object/String",
4293           "name": "load",
4294           "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",
4295           "optional": false
4296         },
4297         {
4298           "type": "Boolean",
4299           "name": "targetEl",
4300           "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",
4301           "optional": false
4302         }
4303       ],
4304       "return": {
4305         "type": "Ext.LoadMask",
4306         "doc": "<p>The LoadMask instance that has just been shown.</p>\n"
4307       },
4308       "private": false,
4309       "static": false,
4310       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4311       "linenr": 2611,
4312       "html_filename": "AbstractComponent.html",
4313       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setLoading",
4314       "shortDoc": "<p>This method allows you to show or hide a LoadMask on top of this component.</p>\n"
4315     },
4316     {
4317       "tagname": "method",
4318       "name": "setPagePosition",
4319       "member": "Ext.Component",
4320       "doc": "<p>Sets the page XY position of the component.  To set the left and top instead, use <a href=\"#/api/Ext.grid.property.Grid-method-setPosition\" rel=\"Ext.grid.property.Grid-method-setPosition\" class=\"docClass\">setPosition</a>.\nThis method fires the <a href=\"#/api/Ext.grid.property.Grid-event-move\" rel=\"Ext.grid.property.Grid-event-move\" class=\"docClass\">move</a> event.</p>\n",
4321       "params": [
4322         {
4323           "type": "Number",
4324           "name": "x",
4325           "doc": "<p>The new x position</p>\n",
4326           "optional": false
4327         },
4328         {
4329           "type": "Number",
4330           "name": "y",
4331           "doc": "<p>The new y position</p>\n",
4332           "optional": false
4333         },
4334         {
4335           "type": "Mixed",
4336           "name": "animate",
4337           "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",
4338           "optional": false
4339         }
4340       ],
4341       "return": {
4342         "type": "Ext.Component",
4343         "doc": "<p>this</p>\n"
4344       },
4345       "private": false,
4346       "static": false,
4347       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4348       "linenr": 501,
4349       "html_filename": "Component.html",
4350       "href": "Component.html#Ext-Component-method-setPagePosition",
4351       "shortDoc": "Sets the page XY position of the component.  To set the left and top instead, use setPosition.\nThis method fires the ..."
4352     },
4353     {
4354       "tagname": "method",
4355       "name": "setPosition",
4356       "member": "Ext.Component",
4357       "doc": "<p>Sets the left and top of the component.  To set the page XY position instead, use <a href=\"#/api/Ext.grid.property.Grid-method-setPagePosition\" rel=\"Ext.grid.property.Grid-method-setPagePosition\" class=\"docClass\">setPagePosition</a>.\nThis method fires the <a href=\"#/api/Ext.grid.property.Grid-event-move\" rel=\"Ext.grid.property.Grid-event-move\" class=\"docClass\">move</a> event.</p>\n",
4358       "params": [
4359         {
4360           "type": "Number",
4361           "name": "left",
4362           "doc": "<p>The new left</p>\n",
4363           "optional": false
4364         },
4365         {
4366           "type": "Number",
4367           "name": "top",
4368           "doc": "<p>The new top</p>\n",
4369           "optional": false
4370         },
4371         {
4372           "type": "Mixed",
4373           "name": "animate",
4374           "doc": "<p>If true, the Component is <i>animated</i> into its new position. You may also pass an animation configuration.</p>\n",
4375           "optional": false
4376         }
4377       ],
4378       "return": {
4379         "type": "Ext.Component",
4380         "doc": "<p>this</p>\n"
4381       },
4382       "private": false,
4383       "static": false,
4384       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4385       "linenr": 417,
4386       "html_filename": "Component.html",
4387       "href": "Component.html#Ext-Component-method-setPosition",
4388       "shortDoc": "Sets the left and top of the component.  To set the page XY position instead, use setPagePosition.\nThis method fires ..."
4389     },
4390     {
4391       "tagname": "method",
4392       "name": "setProperty",
4393       "member": "Ext.grid.property.Grid",
4394       "doc": "<p>Sets the value of a property.</p>\n",
4395       "params": [
4396         {
4397           "type": "String",
4398           "name": "prop",
4399           "doc": "<p>The name of the property to set</p>\n",
4400           "optional": false
4401         },
4402         {
4403           "type": "Mixed",
4404           "name": "value",
4405           "doc": "<p>The value to test</p>\n",
4406           "optional": false
4407         },
4408         {
4409           "type": "Boolean",
4410           "name": "create",
4411           "doc": "<p>(Optional) True to create the property if it doesn't already exist. Defaults to <tt>false</tt>.</p>\n",
4412           "optional": false
4413         }
4414       ],
4415       "return": {
4416         "type": "void",
4417         "doc": "\n"
4418       },
4419       "private": false,
4420       "static": false,
4421       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
4422       "linenr": 324,
4423       "html_filename": "Grid.html",
4424       "href": "Grid.html#Ext-grid-property-Grid-method-setProperty",
4425       "shortDoc": "<p>Sets the value of a property.</p>\n"
4426     },
4427     {
4428       "tagname": "method",
4429       "name": "setScrollTop",
4430       "member": "Ext.panel.Table",
4431       "doc": "<p>Sets the scrollTop of the TablePanel.</p>\n",
4432       "params": [
4433         {
4434           "type": "Number",
4435           "name": "deltaY",
4436           "doc": "\n",
4437           "optional": false
4438         }
4439       ],
4440       "return": {
4441         "type": "void",
4442         "doc": "\n"
4443       },
4444       "private": false,
4445       "static": false,
4446       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
4447       "linenr": 1022,
4448       "html_filename": "Table2.html",
4449       "href": "Table2.html#Ext-panel-Table-method-setScrollTop",
4450       "shortDoc": "<p>Sets the scrollTop of the TablePanel.</p>\n"
4451     },
4452     {
4453       "tagname": "method",
4454       "name": "setSize",
4455       "member": "Ext.AbstractComponent",
4456       "doc": "<p>Sets the width and height of this Component. This method fires the <a href=\"#/api/Ext.grid.property.Grid-event-resize\" rel=\"Ext.grid.property.Grid-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",
4457       "params": [
4458         {
4459           "type": "Mixed",
4460           "name": "width",
4461           "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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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",
4462           "optional": false
4463         },
4464         {
4465           "type": "Mixed",
4466           "name": "height",
4467           "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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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",
4468           "optional": false
4469         }
4470       ],
4471       "return": {
4472         "type": "Ext.Component",
4473         "doc": "<p>this</p>\n"
4474       },
4475       "private": false,
4476       "static": false,
4477       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4478       "linenr": 2340,
4479       "html_filename": "AbstractComponent.html",
4480       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setSize",
4481       "shortDoc": "Sets the width and height of this Component. This method fires the resize event. This method can accept\neither width ..."
4482     },
4483     {
4484       "tagname": "method",
4485       "name": "setSource",
4486       "member": "Ext.grid.property.Grid",
4487       "doc": "<p>Sets the source data object containing the property data.  The data object can contain one or more name/value\npairs representing all of the properties of an object to display in the grid, and this data will automatically\nbe loaded into the grid's <a href=\"#/api/Ext.grid.property.Grid--store\" rel=\"Ext.grid.property.Grid--store\" class=\"docClass\">store</a>.  The values should be supplied in the proper data type if needed,\notherwise string type will be assumed.  If the grid already contains data, this method will replace any\nexisting data.  See also the <a href=\"#/api/Ext.grid.property.Grid-cfg-source\" rel=\"Ext.grid.property.Grid-cfg-source\" class=\"docClass\">source</a> config value.  Example usage:</p>\n\n<pre><code>grid.setSource({\n    \"(name)\": \"My Object\",\n    \"Created\": Ext.Date.parse('10/15/2006', 'm/d/Y'),  // date type\n    \"Available\": false,  // boolean type\n    \"Version\": .01,      // decimal type\n    \"Description\": \"A test object\"\n});\n</code></pre>\n\n",
4488       "params": [
4489         {
4490           "type": "Object",
4491           "name": "source",
4492           "doc": "<p>The data object</p>\n",
4493           "optional": false
4494         }
4495       ],
4496       "return": {
4497         "type": "void",
4498         "doc": "\n"
4499       },
4500       "private": false,
4501       "static": false,
4502       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
4503       "linenr": 293,
4504       "html_filename": "Grid.html",
4505       "href": "Grid.html#Ext-grid-property-Grid-method-setSource",
4506       "shortDoc": "Sets the source data object containing the property data.  The data object can contain one or more name/value\npairs r..."
4507     },
4508     {
4509       "tagname": "method",
4510       "name": "setTitle",
4511       "member": "Ext.panel.Panel",
4512       "doc": "<p>Set a title for the panel&#39;s header. See <a href=\"#/api/Ext.panel.Header--title\" rel=\"Ext.panel.Header--title\" class=\"docClass\">Ext.panel.Header.title</a>.</p>\n",
4513       "params": [
4514         {
4515           "type": "String",
4516           "name": "newTitle",
4517           "doc": "\n",
4518           "optional": false
4519         }
4520       ],
4521       "return": {
4522         "type": "void",
4523         "doc": "\n"
4524       },
4525       "private": false,
4526       "static": false,
4527       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
4528       "linenr": 395,
4529       "html_filename": "Panel3.html",
4530       "href": "Panel3.html#Ext-panel-Panel-method-setTitle",
4531       "shortDoc": "<p>Set a title for the panel&#39;s header. See <a href=\"#/api/Ext.panel.Header--title\" rel=\"Ext.panel.Header--title\" class=\"docClass\">Ext.panel.Header.title</a>.</p>\n"
4532     },
4533     {
4534       "tagname": "method",
4535       "name": "setUI",
4536       "member": "Ext.AbstractComponent",
4537       "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",
4538       "params": [
4539         {
4540           "type": "String",
4541           "name": "ui",
4542           "doc": "<p>The new UI for the component</p>\n",
4543           "optional": false
4544         }
4545       ],
4546       "return": {
4547         "type": "void",
4548         "doc": "\n"
4549       },
4550       "private": false,
4551       "static": false,
4552       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4553       "linenr": 1309,
4554       "html_filename": "AbstractComponent.html",
4555       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setUI",
4556       "shortDoc": "Sets the UI for the component. This will remove any existing UIs on the component. It will also\nloop through any uiCl..."
4557     },
4558     {
4559       "tagname": "method",
4560       "name": "setVisible",
4561       "member": "Ext.AbstractComponent",
4562       "doc": "<p>Convenience function to hide or show this component by boolean.</p>\n",
4563       "params": [
4564         {
4565           "type": "Boolean",
4566           "name": "visible",
4567           "doc": "<p>True to show, false to hide</p>\n",
4568           "optional": false
4569         }
4570       ],
4571       "return": {
4572         "type": "Ext.Component",
4573         "doc": "<p>this</p>\n"
4574       },
4575       "private": false,
4576       "static": false,
4577       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4578       "linenr": 2006,
4579       "html_filename": "AbstractComponent.html",
4580       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setVisible",
4581       "shortDoc": "<p>Convenience function to hide or show this component by boolean.</p>\n"
4582     },
4583     {
4584       "tagname": "method",
4585       "name": "setWidth",
4586       "member": "Ext.AbstractComponent",
4587       "doc": "<p>Sets the width of the component.  This method fires the <a href=\"#/api/Ext.grid.property.Grid-event-resize\" rel=\"Ext.grid.property.Grid-event-resize\" class=\"docClass\">resize</a> event.</p>\n",
4588       "params": [
4589         {
4590           "type": "Number",
4591           "name": "width",
4592           "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.grid.property.Grid-method-getEl\" rel=\"Ext.grid.property.Grid-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",
4593           "optional": false
4594         }
4595       ],
4596       "return": {
4597         "type": "Ext.Component",
4598         "doc": "<p>this</p>\n"
4599       },
4600       "private": false,
4601       "static": false,
4602       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4603       "linenr": 2538,
4604       "html_filename": "AbstractComponent.html",
4605       "href": "AbstractComponent.html#Ext-AbstractComponent-method-setWidth",
4606       "shortDoc": "<p>Sets the width of the component.  This method fires the <a href=\"#/api/Ext.grid.property.Grid-event-resize\" rel=\"Ext.grid.property.Grid-event-resize\" class=\"docClass\">resize</a> event.</p>\n"
4607     },
4608     {
4609       "tagname": "method",
4610       "name": "show",
4611       "member": "Ext.Component",
4612       "doc": "<p>Shows this Component, rendering it first if <a href=\"#/api/Ext.grid.property.Grid-cfg-autoRender\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid--ZIndexManager\" rel=\"Ext.grid.property.Grid--ZIndexManager\" class=\"docClass\">z-index stack</a>.</p>\n\n",
4613       "params": [
4614         {
4615           "type": "String/Element",
4616           "name": "animateTarget",
4617           "doc": "<p>Optional, and <b>only valid for <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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",
4618           "optional": false
4619         },
4620         {
4621           "type": "Function",
4622           "name": "callback",
4623           "doc": "<p>(optional) A callback function to call after the Component is displayed. Only necessary if animation was specified.</p>\n",
4624           "optional": true
4625         },
4626         {
4627           "type": "Object",
4628           "name": "scope",
4629           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the callback is executed. Defaults to this Component.</p>\n",
4630           "optional": true
4631         }
4632       ],
4633       "return": {
4634         "type": "Component",
4635         "doc": "<p>this</p>\n"
4636       },
4637       "private": false,
4638       "static": false,
4639       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4640       "linenr": 645,
4641       "html_filename": "Component.html",
4642       "href": "Component.html#Ext-Component-method-show",
4643       "shortDoc": "Shows this Component, rendering it first if autoRender or {&quot;floating are true.\n\n\nAfter being shown, a floating C..."
4644     },
4645     {
4646       "tagname": "method",
4647       "name": "showHorizontalScroller",
4648       "member": "Ext.panel.Table",
4649       "doc": "<p>Show the horizontalScroller and add the horizontalScrollerPresentCls.</p>\n",
4650       "params": [
4651
4652       ],
4653       "return": {
4654         "type": "void",
4655         "doc": "\n"
4656       },
4657       "private": false,
4658       "static": false,
4659       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
4660       "linenr": 801,
4661       "html_filename": "Table2.html",
4662       "href": "Table2.html#Ext-panel-Table-method-showHorizontalScroller",
4663       "shortDoc": "<p>Show the horizontalScroller and add the horizontalScrollerPresentCls.</p>\n"
4664     },
4665     {
4666       "tagname": "method",
4667       "name": "showVerticalScroller",
4668       "member": "Ext.panel.Table",
4669       "doc": "<p>Show the verticalScroller and add the verticalScrollerPresentCls.</p>\n",
4670       "params": [
4671
4672       ],
4673       "return": {
4674         "type": "void",
4675         "doc": "\n"
4676       },
4677       "private": false,
4678       "static": false,
4679       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
4680       "linenr": 838,
4681       "html_filename": "Table2.html",
4682       "href": "Table2.html#Ext-panel-Table-method-showVerticalScroller",
4683       "shortDoc": "<p>Show the verticalScroller and add the verticalScrollerPresentCls.</p>\n"
4684     },
4685     {
4686       "tagname": "method",
4687       "name": "stopAnimation",
4688       "member": "Ext.util.Animate",
4689       "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",
4690       "params": [
4691
4692       ],
4693       "return": {
4694         "type": "Ext.core.Element",
4695         "doc": "<p>The Element</p>\n"
4696       },
4697       "private": false,
4698       "static": false,
4699       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4700       "linenr": 335,
4701       "html_filename": "Animate.html",
4702       "href": "Animate.html#Ext-util-Animate-method-stopAnimation",
4703       "shortDoc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ..."
4704     },
4705     {
4706       "tagname": "method",
4707       "name": "stopFx",
4708       "member": "Ext.util.Animate",
4709       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.grid.property.Grid-method-stopAnimation\" rel=\"Ext.grid.property.Grid-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",
4710       "params": [
4711
4712       ],
4713       "return": {
4714         "type": "Ext.core.Element",
4715         "doc": "<p>The Element</p>\n"
4716       },
4717       "private": false,
4718       "static": false,
4719       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4720       "linenr": 326,
4721       "html_filename": "Animate.html",
4722       "href": "Animate.html#Ext-util-Animate-method-stopFx",
4723       "shortDoc": "@deprecated 4.0 Replaced by stopAnimation\nStops any running effects and clears this object's internal effects queue i..."
4724     },
4725     {
4726       "tagname": "method",
4727       "name": "suspendEvents",
4728       "member": "Ext.util.Observable",
4729       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.grid.property.Grid-method-resumeEvents\" rel=\"Ext.grid.property.Grid-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
4730       "params": [
4731         {
4732           "type": "Boolean",
4733           "name": "queueSuspended",
4734           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.grid.property.Grid-method-resumeEvents\" rel=\"Ext.grid.property.Grid-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
4735           "optional": false
4736         }
4737       ],
4738       "return": {
4739         "type": "void",
4740         "doc": "\n"
4741       },
4742       "private": false,
4743       "static": false,
4744       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
4745       "linenr": 490,
4746       "html_filename": "Observable.html",
4747       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
4748       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.grid.property.Grid-method-resumeEvents\" rel=\"Ext.grid.property.Grid-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
4749     },
4750     {
4751       "tagname": "method",
4752       "name": "syncFx",
4753       "member": "Ext.util.Animate",
4754       "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.grid.property.Grid-method-sequenceFx\" rel=\"Ext.grid.property.Grid-method-sequenceFx\" class=\"docClass\">sequenceFx</a>.</p>\n",
4755       "params": [
4756
4757       ],
4758       "return": {
4759         "type": "Object",
4760         "doc": "<p>this</p>\n"
4761       },
4762       "private": false,
4763       "static": false,
4764       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
4765       "linenr": 345,
4766       "html_filename": "Animate.html",
4767       "href": "Animate.html#Ext-util-Animate-method-syncFx",
4768       "shortDoc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of ..."
4769     },
4770     {
4771       "tagname": "method",
4772       "name": "toBack",
4773       "member": "Ext.util.Floating",
4774       "doc": "<p>Sends this Component to the back of (lower z-index than) any other visible windows</p>\n",
4775       "params": [
4776
4777       ],
4778       "return": {
4779         "type": "Component",
4780         "doc": "<p>this</p>\n"
4781       },
4782       "private": false,
4783       "static": false,
4784       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
4785       "linenr": 240,
4786       "html_filename": "Floating.html",
4787       "href": "Floating.html#Ext-util-Floating-method-toBack",
4788       "shortDoc": "<p>Sends this Component to the back of (lower z-index than) any other visible windows</p>\n"
4789     },
4790     {
4791       "tagname": "method",
4792       "name": "toFront",
4793       "member": "Ext.util.Floating",
4794       "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",
4795       "params": [
4796         {
4797           "type": "Boolean",
4798           "name": "preventFocus",
4799           "doc": "<p>(optional) Specify <code>true</code> to prevent the Component from being focused.</p>\n",
4800           "optional": true
4801         }
4802       ],
4803       "return": {
4804         "type": "Component",
4805         "doc": "<p>this</p>\n"
4806       },
4807       "private": false,
4808       "static": false,
4809       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Floating.js",
4810       "linenr": 188,
4811       "html_filename": "Floating.html",
4812       "href": "Floating.html#Ext-util-Floating-method-toFront",
4813       "shortDoc": "Brings this floating Component to the front of any other visible, floating Components managed by the same ZIndexManag..."
4814     },
4815     {
4816       "tagname": "method",
4817       "name": "toggleCollapse",
4818       "member": "Ext.panel.Panel",
4819       "doc": "<p>Shortcut for performing an <a href=\"#/api/Ext.grid.property.Grid-method-expand\" rel=\"Ext.grid.property.Grid-method-expand\" class=\"docClass\">expand</a> or <a href=\"#/api/Ext.grid.property.Grid-method-collapse\" rel=\"Ext.grid.property.Grid-method-collapse\" class=\"docClass\">collapse</a> based on the current state of the panel.</p>\n",
4820       "params": [
4821
4822       ],
4823       "return": {
4824         "type": "Ext.panel.Panel",
4825         "doc": "<p>this</p>\n"
4826       },
4827       "private": false,
4828       "static": false,
4829       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
4830       "linenr": 1313,
4831       "html_filename": "Panel3.html",
4832       "href": "Panel3.html#Ext-panel-Panel-method-toggleCollapse",
4833       "shortDoc": "<p>Shortcut for performing an <a href=\"#/api/Ext.grid.property.Grid-method-expand\" rel=\"Ext.grid.property.Grid-method-expand\" class=\"docClass\">expand</a> or <a href=\"#/api/Ext.grid.property.Grid-method-collapse\" rel=\"Ext.grid.property.Grid-method-collapse\" class=\"docClass\">collapse</a> based on the current state of the panel.</p>\n"
4834     },
4835     {
4836       "tagname": "method",
4837       "name": "un",
4838       "member": "Ext.util.Observable",
4839       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.grid.property.Grid-method-removeListener\" rel=\"Ext.grid.property.Grid-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
4840       "params": [
4841         {
4842           "type": "String",
4843           "name": "eventName",
4844           "doc": "<p>The type of event the handler was associated with.</p>\n",
4845           "optional": false
4846         },
4847         {
4848           "type": "Function",
4849           "name": "handler",
4850           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.grid.property.Grid-method-addListener\" rel=\"Ext.grid.property.Grid-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
4851           "optional": false
4852         },
4853         {
4854           "type": "Object",
4855           "name": "scope",
4856           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
4857           "optional": true
4858         }
4859       ],
4860       "return": {
4861         "type": "void",
4862         "doc": "\n"
4863       },
4864       "private": false,
4865       "static": false,
4866       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
4867       "linenr": 608,
4868       "html_filename": "Observable.html",
4869       "href": "Observable.html#Ext-util-Observable-method-un",
4870       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.grid.property.Grid-method-removeListener\" rel=\"Ext.grid.property.Grid-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
4871     },
4872     {
4873       "tagname": "method",
4874       "name": "up",
4875       "member": "Ext.AbstractComponent",
4876       "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",
4877       "params": [
4878         {
4879           "type": "String",
4880           "name": "selector",
4881           "doc": "<p>Optional. The simple selector to test.</p>\n",
4882           "optional": false
4883         }
4884       ],
4885       "return": {
4886         "type": "Container",
4887         "doc": "<p>The matching ancestor Container (or <code>undefined</code> if no match was found).</p>\n"
4888       },
4889       "private": false,
4890       "static": false,
4891       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4892       "linenr": 1728,
4893       "html_filename": "AbstractComponent.html",
4894       "href": "AbstractComponent.html#Ext-AbstractComponent-method-up",
4895       "shortDoc": "Walks up the ownerCt axis looking for an ancestor Container which matches\nthe passed simple selector.\n\n\nExample:\nvar ..."
4896     },
4897     {
4898       "tagname": "method",
4899       "name": "update",
4900       "member": "Ext.AbstractComponent",
4901       "doc": "<p>Update the content area of a component.</p>\n",
4902       "params": [
4903         {
4904           "type": "Mixed",
4905           "name": "htmlOrData",
4906           "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",
4907           "optional": false
4908         },
4909         {
4910           "type": "Boolean",
4911           "name": "loadScripts",
4912           "doc": "<p>(optional) Only legitimate when using the html configuration. Defaults to false</p>\n",
4913           "optional": true
4914         },
4915         {
4916           "type": "Function",
4917           "name": "callback",
4918           "doc": "<p>(optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading</p>\n",
4919           "optional": true
4920         }
4921       ],
4922       "return": {
4923         "type": "void",
4924         "doc": "\n"
4925       },
4926       "private": false,
4927       "static": false,
4928       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4929       "linenr": 1974,
4930       "html_filename": "AbstractComponent.html",
4931       "href": "AbstractComponent.html#Ext-AbstractComponent-method-update",
4932       "shortDoc": "<p>Update the content area of a component.</p>\n"
4933     },
4934     {
4935       "tagname": "method",
4936       "name": "updateBox",
4937       "member": "Ext.Component",
4938       "doc": "<p>Sets the current box measurements of the component's underlying element.</p>\n",
4939       "params": [
4940         {
4941           "type": "Object",
4942           "name": "box",
4943           "doc": "<p>An object in the format {x, y, width, height}</p>\n",
4944           "optional": false
4945         }
4946       ],
4947       "return": {
4948         "type": "Ext.Component",
4949         "doc": "<p>this</p>\n"
4950       },
4951       "private": false,
4952       "static": false,
4953       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
4954       "linenr": 551,
4955       "html_filename": "Component.html",
4956       "href": "Component.html#Ext-Component-method-updateBox",
4957       "shortDoc": "<p>Sets the current box measurements of the component's underlying element.</p>\n"
4958     }
4959   ],
4960   "property": [
4961     {
4962       "tagname": "property",
4963       "name": "centerClientWidth",
4964       "member": "Ext.panel.Table",
4965       "type": "Object",
4966       "doc": "<p>clientWidth often returns 0 in IE resulting in an\ninfinity result, here we use offsetWidth bc there are\nno possible scrollbars and we don't care about margins</p>\n",
4967       "private": false,
4968       "static": false,
4969       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
4970       "linenr": 744,
4971       "html_filename": "Table2.html",
4972       "href": "Table2.html#Ext-panel-Table-property-centerClientWidth",
4973       "shortDoc": "clientWidth often returns 0 in IE resulting in an\ninfinity result, here we use offsetWidth bc there are\nno possible s..."
4974     },
4975     {
4976       "tagname": "property",
4977       "name": "dd",
4978       "member": "Ext.panel.Panel",
4979       "type": "Ext.dd.DragSource.",
4980       "doc": "<p>If this Panel is configured <a href=\"#/api/Ext.grid.property.Grid-property-draggable\" rel=\"Ext.grid.property.Grid-property-draggable\" class=\"docClass\">draggable</a>, this property will contain\nan instance of <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> which handles dragging the Panel.</p>\n\n\n<p>The developer must provide implementations of the abstract methods of <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a>\nin order to supply behaviour for each stage of the drag/drop process. See <a href=\"#/api/Ext.grid.property.Grid-property-draggable\" rel=\"Ext.grid.property.Grid-property-draggable\" class=\"docClass\">draggable</a>.</p>\n",
4981       "private": false,
4982       "static": false,
4983       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
4984       "linenr": 1336,
4985       "html_filename": "Panel3.html",
4986       "href": "Panel3.html#Ext-panel-Panel-property-dd",
4987       "shortDoc": "If this Panel is configured draggable, this property will contain\nan instance of Ext.dd.DragSource which handles drag..."
4988     },
4989     {
4990       "tagname": "property",
4991       "name": "draggable",
4992       "member": "Ext.AbstractComponent",
4993       "type": "Boolean",
4994       "doc": "<p>Read-only property indicating whether or not the component can be dragged</p>\n",
4995       "private": false,
4996       "static": false,
4997       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
4998       "linenr": 374,
4999       "html_filename": "AbstractComponent.html",
5000       "href": "AbstractComponent.html#Ext-AbstractComponent-property-draggable"
5001     },
5002     {
5003       "tagname": "property",
5004       "name": "floatParent",
5005       "member": "Ext.Component",
5006       "type": "Ext.Container",
5007       "doc": "<p>Optional. Only present for <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-cfg-floating\" class=\"docClass\">floating</a> and <a href=\"#/api/Ext.grid.property.Grid-property-zIndexManager\" rel=\"Ext.grid.property.Grid-property-zIndexManager\" class=\"docClass\">zIndexManager</a></p>\n\n",
5008       "private": false,
5009       "static": false,
5010       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
5011       "linenr": 221,
5012       "html_filename": "Component.html",
5013       "href": "Component.html#Ext-Component-property-floatParent",
5014       "shortDoc": "Optional. Only present for floating Components which were inserted as descendant items of floating Containers.\n\n\nFloa..."
5015     },
5016     {
5017       "tagname": "property",
5018       "name": "frameSize",
5019       "member": "Ext.AbstractComponent",
5020       "type": "Object",
5021       "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.grid.property.Grid-cfg-frame\" rel=\"Ext.grid.property.Grid-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",
5022       "private": false,
5023       "static": false,
5024       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5025       "linenr": 207,
5026       "html_filename": "AbstractComponent.html",
5027       "href": "AbstractComponent.html#Ext-AbstractComponent-property-frameSize",
5028       "shortDoc": "Read-only property indicating the width of any framing elements which were added within the encapsulating element\nto ..."
5029     },
5030     {
5031       "tagname": "property",
5032       "name": "hasView",
5033       "member": "Ext.panel.Table",
5034       "type": "Boolean",
5035       "doc": "<p>Boolean to indicate that a view has been injected into the panel.</p>\n",
5036       "private": false,
5037       "static": false,
5038       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5039       "linenr": 34,
5040       "html_filename": "Table2.html",
5041       "href": "Table2.html#Ext-panel-Table-property-hasView"
5042     },
5043     {
5044       "tagname": "property",
5045       "name": "items",
5046       "member": "Ext.container.AbstractContainer",
5047       "type": "Ext.util.MixedCollection",
5048       "doc": "<p>The MixedCollection containing all the child items of this container.</p>\n",
5049       "private": false,
5050       "static": false,
5051       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5052       "linenr": 273,
5053       "html_filename": "AbstractContainer.html",
5054       "href": "AbstractContainer.html#Ext-container-AbstractContainer-property-items"
5055     },
5056     {
5057       "tagname": "property",
5058       "name": "maskOnDisable",
5059       "member": "Ext.AbstractComponent",
5060       "type": "Boolean",
5061       "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",
5062       "private": false,
5063       "static": false,
5064       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5065       "linenr": 513,
5066       "html_filename": "AbstractComponent.html",
5067       "href": "AbstractComponent.html#Ext-AbstractComponent-property-maskOnDisable",
5068       "shortDoc": "This is an internal flag that you use when creating custom components.\nBy default this is set to true which means tha..."
5069     },
5070     {
5071       "tagname": "property",
5072       "name": "ownerCt",
5073       "member": "Ext.AbstractComponent",
5074       "type": "Ext.Container",
5075       "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.grid.property.Grid-cfg-itemId\" rel=\"Ext.grid.property.Grid-cfg-itemId\" class=\"docClass\">itemId</a></tt>.</p>\n\n",
5076       "private": false,
5077       "static": false,
5078       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5079       "linenr": 101,
5080       "html_filename": "AbstractComponent.html",
5081       "href": "AbstractComponent.html#Ext-AbstractComponent-property-ownerCt",
5082       "shortDoc": "This Component's owner Container (defaults to undefined, and is set automatically when\nthis Component is added to a C..."
5083     },
5084     {
5085       "tagname": "property",
5086       "name": "rendered",
5087       "member": "Ext.AbstractComponent",
5088       "type": "Boolean",
5089       "doc": "<p>Read-only property indicating whether or not the component has been rendered.</p>\n",
5090       "private": false,
5091       "static": false,
5092       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5093       "linenr": 500,
5094       "html_filename": "AbstractComponent.html",
5095       "href": "AbstractComponent.html#Ext-AbstractComponent-property-rendered"
5096     },
5097     {
5098       "tagname": "property",
5099       "name": "zIndexManager",
5100       "member": "Ext.Component",
5101       "type": "Ext.ZIndexManager",
5102       "doc": "<p>Optional. Only present for <a href=\"#/api/Ext.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-method-toFront\" rel=\"Ext.grid.property.Grid-method-toFront\" class=\"docClass\">brought to the front</a> or <a href=\"#/api/Ext.grid.property.Grid-method-toBack\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-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.grid.property.Grid-cfg-floating\" rel=\"Ext.grid.property.Grid-cfg-floating\" class=\"docClass\">floating</a> and <a href=\"#/api/Ext.grid.property.Grid-property-floatParent\" rel=\"Ext.grid.property.Grid-property-floatParent\" class=\"docClass\">floatParent</a></p>\n\n",
5103       "private": false,
5104       "static": false,
5105       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/Component.js",
5106       "linenr": 206,
5107       "html_filename": "Component.html",
5108       "href": "Component.html#Ext-Component-property-zIndexManager",
5109       "shortDoc": "Optional. Only present for floating Components after they have been rendered.\n\n\nA reference to the ZIndexManager whic..."
5110     }
5111   ],
5112   "event": [
5113     {
5114       "tagname": "event",
5115       "name": "activate",
5116       "member": "Ext.AbstractComponent",
5117       "doc": "<p>Fires after a Component has been visually activated.</p>\n",
5118       "params": [
5119         {
5120           "type": "Ext.Component",
5121           "name": "this",
5122           "doc": "\n",
5123           "optional": false
5124         }
5125       ],
5126       "private": false,
5127       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5128       "linenr": 540,
5129       "html_filename": "AbstractComponent.html",
5130       "href": "AbstractComponent.html#Ext-AbstractComponent-event-activate",
5131       "shortDoc": "<p>Fires after a Component has been visually activated.</p>\n"
5132     },
5133     {
5134       "tagname": "event",
5135       "name": "add",
5136       "member": "Ext.container.AbstractContainer",
5137       "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",
5138       "params": [
5139         {
5140           "type": "Ext.container.Container",
5141           "name": "this",
5142           "doc": "\n",
5143           "optional": false
5144         },
5145         {
5146           "type": "Ext.Component",
5147           "name": "component",
5148           "doc": "<p>The component that was added</p>\n",
5149           "optional": false
5150         },
5151         {
5152           "type": "Number",
5153           "name": "index",
5154           "doc": "<p>The index at which the component was added to the container's items collection</p>\n",
5155           "optional": false
5156         }
5157       ],
5158       "private": false,
5159       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5160       "linenr": 215,
5161       "html_filename": "AbstractContainer.html",
5162       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-add",
5163       "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"
5164     },
5165     {
5166       "tagname": "event",
5167       "name": "added",
5168       "member": "Ext.AbstractComponent",
5169       "doc": "<p>Fires after a Component had been added to a Container.</p>\n",
5170       "params": [
5171         {
5172           "type": "Ext.Component",
5173           "name": "this",
5174           "doc": "\n",
5175           "optional": false
5176         },
5177         {
5178           "type": "Ext.container.Container",
5179           "name": "container",
5180           "doc": "<p>Parent Container</p>\n",
5181           "optional": false
5182         },
5183         {
5184           "type": "Number",
5185           "name": "pos",
5186           "doc": "<p>position of Component</p>\n",
5187           "optional": false
5188         }
5189       ],
5190       "private": false,
5191       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5192       "linenr": 560,
5193       "html_filename": "AbstractComponent.html",
5194       "href": "AbstractComponent.html#Ext-AbstractComponent-event-added",
5195       "shortDoc": "<p>Fires after a Component had been added to a Container.</p>\n"
5196     },
5197     {
5198       "tagname": "event",
5199       "name": "afterlayout",
5200       "member": "Ext.container.AbstractContainer",
5201       "doc": "<p>Fires when the components in this container are arranged by the associated layout manager.</p>\n",
5202       "params": [
5203         {
5204           "type": "Ext.container.Container",
5205           "name": "this",
5206           "doc": "\n",
5207           "optional": false
5208         },
5209         {
5210           "type": "ContainerLayout",
5211           "name": "layout",
5212           "doc": "<p>The ContainerLayout implementation for this container</p>\n",
5213           "optional": false
5214         }
5215       ],
5216       "private": false,
5217       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5218       "linenr": 191,
5219       "html_filename": "AbstractContainer.html",
5220       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-afterlayout",
5221       "shortDoc": "<p>Fires when the components in this container are arranged by the associated layout manager.</p>\n"
5222     },
5223     {
5224       "tagname": "event",
5225       "name": "afterrender",
5226       "member": "Ext.AbstractComponent",
5227       "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.grid.property.Grid-property-rendered\" rel=\"Ext.grid.property.Grid-property-rendered\" class=\"docClass\">rendered</a>, been postprocesed\nby any afterRender method defined for the Component.</p>\n\n",
5228       "params": [
5229         {
5230           "type": "Ext.Component",
5231           "name": "this",
5232           "doc": "\n",
5233           "optional": false
5234         }
5235       ],
5236       "private": false,
5237       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5238       "linenr": 627,
5239       "html_filename": "AbstractComponent.html",
5240       "href": "AbstractComponent.html#Ext-AbstractComponent-event-afterrender",
5241       "shortDoc": "Fires after the component rendering is finished.\n\n\nThe afterrender event is fired after this Component has been rende..."
5242     },
5243     {
5244       "tagname": "event",
5245       "name": "beforeactivate",
5246       "member": "Ext.AbstractComponent",
5247       "doc": "<p>Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate\nfrom occurring.</p>\n",
5248       "params": [
5249         {
5250           "type": "Ext.Component",
5251           "name": "this",
5252           "doc": "\n",
5253           "optional": false
5254         }
5255       ],
5256       "private": false,
5257       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5258       "linenr": 532,
5259       "html_filename": "AbstractComponent.html",
5260       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeactivate",
5261       "shortDoc": "Fires before a Component has been visually activated.\nReturning false from an event listener can prevent the activate..."
5262     },
5263     {
5264       "tagname": "event",
5265       "name": "beforeadd",
5266       "member": "Ext.container.AbstractContainer",
5267       "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",
5268       "params": [
5269         {
5270           "type": "Ext.container.Container",
5271           "name": "this",
5272           "doc": "\n",
5273           "optional": false
5274         },
5275         {
5276           "type": "Ext.Component",
5277           "name": "component",
5278           "doc": "<p>The component being added</p>\n",
5279           "optional": false
5280         },
5281         {
5282           "type": "Number",
5283           "name": "index",
5284           "doc": "<p>The index at which the component will be added to the container's items collection</p>\n",
5285           "optional": false
5286         }
5287       ],
5288       "private": false,
5289       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5290       "linenr": 198,
5291       "html_filename": "AbstractContainer.html",
5292       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforeadd",
5293       "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"
5294     },
5295     {
5296       "tagname": "event",
5297       "name": "beforecardswitch",
5298       "member": "Ext.container.AbstractContainer",
5299       "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",
5300       "params": [
5301         {
5302           "type": "Ext.container.Container",
5303           "name": "this",
5304           "doc": "\n",
5305           "optional": false
5306         },
5307         {
5308           "type": "Ext.Component",
5309           "name": "newCard",
5310           "doc": "<p>The card that will be switched to</p>\n",
5311           "optional": false
5312         },
5313         {
5314           "type": "Ext.Component",
5315           "name": "oldCard",
5316           "doc": "<p>The card that will be switched from</p>\n",
5317           "optional": false
5318         },
5319         {
5320           "type": "Number",
5321           "name": "index",
5322           "doc": "<p>The index of the card that will be switched to</p>\n",
5323           "optional": false
5324         },
5325         {
5326           "type": "Boolean",
5327           "name": "animated",
5328           "doc": "<p>True if this cardswitch will be animated</p>\n",
5329           "optional": false
5330         }
5331       ],
5332       "private": false,
5333       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5334       "linenr": 232,
5335       "html_filename": "AbstractContainer.html",
5336       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforecardswitch",
5337       "shortDoc": "Fires before this container switches the active card. This event\nis only available if this container uses a CardLayou..."
5338     },
5339     {
5340       "tagname": "event",
5341       "name": "beforecontainerclick",
5342       "member": "Ext.panel.Table",
5343       "doc": "<p>Fires before the click event on the container is processed. Returns false to cancel the default action.</p>\n",
5344       "params": [
5345         {
5346           "type": "Ext.view.View",
5347           "name": "this",
5348           "doc": "\n",
5349           "optional": false
5350         },
5351         {
5352           "type": "Ext.EventObject",
5353           "name": "e",
5354           "doc": "<p>The raw event object</p>\n",
5355           "optional": false
5356         }
5357       ],
5358       "private": false,
5359       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5360       "linenr": 443,
5361       "html_filename": "Table2.html",
5362       "href": "Table2.html#Ext-panel-Table-event-beforecontainerclick",
5363       "shortDoc": "<p>Fires before the click event on the container is processed. Returns false to cancel the default action.</p>\n"
5364     },
5365     {
5366       "tagname": "event",
5367       "name": "beforecontainercontextmenu",
5368       "member": "Ext.panel.Table",
5369       "doc": "<p>Fires before the contextmenu event on the container is processed. Returns false to cancel the default action.</p>\n",
5370       "params": [
5371         {
5372           "type": "Ext.view.View",
5373           "name": "this",
5374           "doc": "\n",
5375           "optional": false
5376         },
5377         {
5378           "type": "Ext.EventObject",
5379           "name": "e",
5380           "doc": "<p>The raw event object</p>\n",
5381           "optional": false
5382         }
5383       ],
5384       "private": false,
5385       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5386       "linenr": 457,
5387       "html_filename": "Table2.html",
5388       "href": "Table2.html#Ext-panel-Table-event-beforecontainercontextmenu",
5389       "shortDoc": "<p>Fires before the contextmenu event on the container is processed. Returns false to cancel the default action.</p>\n"
5390     },
5391     {
5392       "tagname": "event",
5393       "name": "beforecontainerdblclick",
5394       "member": "Ext.panel.Table",
5395       "doc": "<p>Fires before the dblclick event on the container is processed. Returns false to cancel the default action.</p>\n",
5396       "params": [
5397         {
5398           "type": "Ext.view.View",
5399           "name": "this",
5400           "doc": "\n",
5401           "optional": false
5402         },
5403         {
5404           "type": "Ext.EventObject",
5405           "name": "e",
5406           "doc": "<p>The raw event object</p>\n",
5407           "optional": false
5408         }
5409       ],
5410       "private": false,
5411       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5412       "linenr": 450,
5413       "html_filename": "Table2.html",
5414       "href": "Table2.html#Ext-panel-Table-event-beforecontainerdblclick",
5415       "shortDoc": "<p>Fires before the dblclick event on the container is processed. Returns false to cancel the default action.</p>\n"
5416     },
5417     {
5418       "tagname": "event",
5419       "name": "beforecontainermousedown",
5420       "member": "Ext.panel.Table",
5421       "doc": "<p>Fires before the mousedown event on the container is processed. Returns false to cancel the default action.</p>\n",
5422       "params": [
5423         {
5424           "type": "Ext.view.View",
5425           "name": "this",
5426           "doc": "\n",
5427           "optional": false
5428         },
5429         {
5430           "type": "Ext.EventObject",
5431           "name": "e",
5432           "doc": "<p>The raw event object</p>\n",
5433           "optional": false
5434         }
5435       ],
5436       "private": false,
5437       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5438       "linenr": 415,
5439       "html_filename": "Table2.html",
5440       "href": "Table2.html#Ext-panel-Table-event-beforecontainermousedown",
5441       "shortDoc": "<p>Fires before the mousedown event on the container is processed. Returns false to cancel the default action.</p>\n"
5442     },
5443     {
5444       "tagname": "event",
5445       "name": "beforecontainermouseout",
5446       "member": "Ext.panel.Table",
5447       "doc": "<p>Fires before the mouseout event on the container is processed. Returns false to cancel the default action.</p>\n",
5448       "params": [
5449         {
5450           "type": "Ext.view.View",
5451           "name": "this",
5452           "doc": "\n",
5453           "optional": false
5454         },
5455         {
5456           "type": "Ext.EventObject",
5457           "name": "e",
5458           "doc": "<p>The raw event object</p>\n",
5459           "optional": false
5460         }
5461       ],
5462       "private": false,
5463       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5464       "linenr": 436,
5465       "html_filename": "Table2.html",
5466       "href": "Table2.html#Ext-panel-Table-event-beforecontainermouseout",
5467       "shortDoc": "<p>Fires before the mouseout event on the container is processed. Returns false to cancel the default action.</p>\n"
5468     },
5469     {
5470       "tagname": "event",
5471       "name": "beforecontainermouseover",
5472       "member": "Ext.panel.Table",
5473       "doc": "<p>Fires before the mouseover event on the container is processed. Returns false to cancel the default action.</p>\n",
5474       "params": [
5475         {
5476           "type": "Ext.view.View",
5477           "name": "this",
5478           "doc": "\n",
5479           "optional": false
5480         },
5481         {
5482           "type": "Ext.EventObject",
5483           "name": "e",
5484           "doc": "<p>The raw event object</p>\n",
5485           "optional": false
5486         }
5487       ],
5488       "private": false,
5489       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5490       "linenr": 429,
5491       "html_filename": "Table2.html",
5492       "href": "Table2.html#Ext-panel-Table-event-beforecontainermouseover",
5493       "shortDoc": "<p>Fires before the mouseover event on the container is processed. Returns false to cancel the default action.</p>\n"
5494     },
5495     {
5496       "tagname": "event",
5497       "name": "beforecontainermouseup",
5498       "member": "Ext.panel.Table",
5499       "doc": "<p>Fires before the mouseup event on the container is processed. Returns false to cancel the default action.</p>\n",
5500       "params": [
5501         {
5502           "type": "Ext.view.View",
5503           "name": "this",
5504           "doc": "\n",
5505           "optional": false
5506         },
5507         {
5508           "type": "Ext.EventObject",
5509           "name": "e",
5510           "doc": "<p>The raw event object</p>\n",
5511           "optional": false
5512         }
5513       ],
5514       "private": false,
5515       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5516       "linenr": 422,
5517       "html_filename": "Table2.html",
5518       "href": "Table2.html#Ext-panel-Table-event-beforecontainermouseup",
5519       "shortDoc": "<p>Fires before the mouseup event on the container is processed. Returns false to cancel the default action.</p>\n"
5520     },
5521     {
5522       "tagname": "event",
5523       "name": "beforedeactivate",
5524       "member": "Ext.AbstractComponent",
5525       "doc": "<p>Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deactivate\nfrom occurring.</p>\n",
5526       "params": [
5527         {
5528           "type": "Ext.Component",
5529           "name": "this",
5530           "doc": "\n",
5531           "optional": false
5532         }
5533       ],
5534       "private": false,
5535       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5536       "linenr": 546,
5537       "html_filename": "AbstractComponent.html",
5538       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedeactivate",
5539       "shortDoc": "Fires before a Component has been visually deactivated.\nReturning false from an event listener can prevent the deacti..."
5540     },
5541     {
5542       "tagname": "event",
5543       "name": "beforedestroy",
5544       "member": "Ext.AbstractComponent",
5545       "doc": "<p>Fires before the component is <a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>ed. Return false from an event handler to stop the <a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>.</p>\n",
5546       "params": [
5547         {
5548           "type": "Ext.Component",
5549           "name": "this",
5550           "doc": "\n",
5551           "optional": false
5552         }
5553       ],
5554       "private": false,
5555       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5556       "linenr": 635,
5557       "html_filename": "AbstractComponent.html",
5558       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforedestroy",
5559       "shortDoc": "<p>Fires before the component is <a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>ed. Return false from an event handler to stop the <a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>.</p>\n"
5560     },
5561     {
5562       "tagname": "event",
5563       "name": "beforehide",
5564       "member": "Ext.AbstractComponent",
5565       "doc": "<p>Fires before the component is hidden when calling the <a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a> method.\nReturn false from an event handler to stop the hide.</p>\n",
5566       "params": [
5567         {
5568           "type": "Ext.Component",
5569           "name": "this",
5570           "doc": "\n",
5571           "optional": false
5572         }
5573       ],
5574       "private": false,
5575       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5576       "linenr": 593,
5577       "html_filename": "AbstractComponent.html",
5578       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforehide",
5579       "shortDoc": "<p>Fires before the component is hidden when calling the <a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a> method.\nReturn false from an event handler to stop the hide.</p>\n"
5580     },
5581     {
5582       "tagname": "event",
5583       "name": "beforeitemclick",
5584       "member": "Ext.panel.Table",
5585       "doc": "<p>Fires before the click event on an item is processed. Returns false to cancel the default action.</p>\n",
5586       "params": [
5587         {
5588           "type": "Ext.view.View",
5589           "name": "this",
5590           "doc": "\n",
5591           "optional": false
5592         },
5593         {
5594           "type": "Ext.data.Model",
5595           "name": "record",
5596           "doc": "<p>The record that belongs to the item</p>\n",
5597           "optional": false
5598         },
5599         {
5600           "type": "HTMLElement",
5601           "name": "item",
5602           "doc": "<p>The item's element</p>\n",
5603           "optional": false
5604         },
5605         {
5606           "type": "Number",
5607           "name": "index",
5608           "doc": "<p>The item's index</p>\n",
5609           "optional": false
5610         },
5611         {
5612           "type": "Ext.EventObject",
5613           "name": "e",
5614           "doc": "<p>The raw event object</p>\n",
5615           "optional": false
5616         }
5617       ],
5618       "private": false,
5619       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5620       "linenr": 315,
5621       "html_filename": "Table2.html",
5622       "href": "Table2.html#Ext-panel-Table-event-beforeitemclick",
5623       "shortDoc": "<p>Fires before the click event on an item is processed. Returns false to cancel the default action.</p>\n"
5624     },
5625     {
5626       "tagname": "event",
5627       "name": "beforeitemcontextmenu",
5628       "member": "Ext.panel.Table",
5629       "doc": "<p>Fires before the contextmenu event on an item is processed. Returns false to cancel the default action.</p>\n",
5630       "params": [
5631         {
5632           "type": "Ext.view.View",
5633           "name": "this",
5634           "doc": "\n",
5635           "optional": false
5636         },
5637         {
5638           "type": "Ext.data.Model",
5639           "name": "record",
5640           "doc": "<p>The record that belongs to the item</p>\n",
5641           "optional": false
5642         },
5643         {
5644           "type": "HTMLElement",
5645           "name": "item",
5646           "doc": "<p>The item's element</p>\n",
5647           "optional": false
5648         },
5649         {
5650           "type": "Number",
5651           "name": "index",
5652           "doc": "<p>The item's index</p>\n",
5653           "optional": false
5654         },
5655         {
5656           "type": "Ext.EventObject",
5657           "name": "e",
5658           "doc": "<p>The raw event object</p>\n",
5659           "optional": false
5660         }
5661       ],
5662       "private": false,
5663       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5664       "linenr": 335,
5665       "html_filename": "Table2.html",
5666       "href": "Table2.html#Ext-panel-Table-event-beforeitemcontextmenu",
5667       "shortDoc": "<p>Fires before the contextmenu event on an item is processed. Returns false to cancel the default action.</p>\n"
5668     },
5669     {
5670       "tagname": "event",
5671       "name": "beforeitemdblclick",
5672       "member": "Ext.panel.Table",
5673       "doc": "<p>Fires before the dblclick event on an item is processed. Returns false to cancel the default action.</p>\n",
5674       "params": [
5675         {
5676           "type": "Ext.view.View",
5677           "name": "this",
5678           "doc": "\n",
5679           "optional": false
5680         },
5681         {
5682           "type": "Ext.data.Model",
5683           "name": "record",
5684           "doc": "<p>The record that belongs to the item</p>\n",
5685           "optional": false
5686         },
5687         {
5688           "type": "HTMLElement",
5689           "name": "item",
5690           "doc": "<p>The item's element</p>\n",
5691           "optional": false
5692         },
5693         {
5694           "type": "Number",
5695           "name": "index",
5696           "doc": "<p>The item's index</p>\n",
5697           "optional": false
5698         },
5699         {
5700           "type": "Ext.EventObject",
5701           "name": "e",
5702           "doc": "<p>The raw event object</p>\n",
5703           "optional": false
5704         }
5705       ],
5706       "private": false,
5707       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5708       "linenr": 325,
5709       "html_filename": "Table2.html",
5710       "href": "Table2.html#Ext-panel-Table-event-beforeitemdblclick",
5711       "shortDoc": "<p>Fires before the dblclick event on an item is processed. Returns false to cancel the default action.</p>\n"
5712     },
5713     {
5714       "tagname": "event",
5715       "name": "beforeitemmousedown",
5716       "member": "Ext.panel.Table",
5717       "doc": "<p>Fires before the mousedown event on an item is processed. Returns false to cancel the default action.</p>\n",
5718       "params": [
5719         {
5720           "type": "Ext.view.View",
5721           "name": "this",
5722           "doc": "\n",
5723           "optional": false
5724         },
5725         {
5726           "type": "Ext.data.Model",
5727           "name": "record",
5728           "doc": "<p>The record that belongs to the item</p>\n",
5729           "optional": false
5730         },
5731         {
5732           "type": "HTMLElement",
5733           "name": "item",
5734           "doc": "<p>The item's element</p>\n",
5735           "optional": false
5736         },
5737         {
5738           "type": "Number",
5739           "name": "index",
5740           "doc": "<p>The item's index</p>\n",
5741           "optional": false
5742         },
5743         {
5744           "type": "Ext.EventObject",
5745           "name": "e",
5746           "doc": "<p>The raw event object</p>\n",
5747           "optional": false
5748         }
5749       ],
5750       "private": false,
5751       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5752       "linenr": 275,
5753       "html_filename": "Table2.html",
5754       "href": "Table2.html#Ext-panel-Table-event-beforeitemmousedown",
5755       "shortDoc": "<p>Fires before the mousedown event on an item is processed. Returns false to cancel the default action.</p>\n"
5756     },
5757     {
5758       "tagname": "event",
5759       "name": "beforeitemmouseenter",
5760       "member": "Ext.panel.Table",
5761       "doc": "<p>Fires before the mouseenter event on an item is processed. Returns false to cancel the default action.</p>\n",
5762       "params": [
5763         {
5764           "type": "Ext.view.View",
5765           "name": "this",
5766           "doc": "\n",
5767           "optional": false
5768         },
5769         {
5770           "type": "Ext.data.Model",
5771           "name": "record",
5772           "doc": "<p>The record that belongs to the item</p>\n",
5773           "optional": false
5774         },
5775         {
5776           "type": "HTMLElement",
5777           "name": "item",
5778           "doc": "<p>The item's element</p>\n",
5779           "optional": false
5780         },
5781         {
5782           "type": "Number",
5783           "name": "index",
5784           "doc": "<p>The item's index</p>\n",
5785           "optional": false
5786         },
5787         {
5788           "type": "Ext.EventObject",
5789           "name": "e",
5790           "doc": "<p>The raw event object</p>\n",
5791           "optional": false
5792         }
5793       ],
5794       "private": false,
5795       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5796       "linenr": 295,
5797       "html_filename": "Table2.html",
5798       "href": "Table2.html#Ext-panel-Table-event-beforeitemmouseenter",
5799       "shortDoc": "<p>Fires before the mouseenter event on an item is processed. Returns false to cancel the default action.</p>\n"
5800     },
5801     {
5802       "tagname": "event",
5803       "name": "beforeitemmouseleave",
5804       "member": "Ext.panel.Table",
5805       "doc": "<p>Fires before the mouseleave event on an item is processed. Returns false to cancel the default action.</p>\n",
5806       "params": [
5807         {
5808           "type": "Ext.view.View",
5809           "name": "this",
5810           "doc": "\n",
5811           "optional": false
5812         },
5813         {
5814           "type": "Ext.data.Model",
5815           "name": "record",
5816           "doc": "<p>The record that belongs to the item</p>\n",
5817           "optional": false
5818         },
5819         {
5820           "type": "HTMLElement",
5821           "name": "item",
5822           "doc": "<p>The item's element</p>\n",
5823           "optional": false
5824         },
5825         {
5826           "type": "Number",
5827           "name": "index",
5828           "doc": "<p>The item's index</p>\n",
5829           "optional": false
5830         },
5831         {
5832           "type": "Ext.EventObject",
5833           "name": "e",
5834           "doc": "<p>The raw event object</p>\n",
5835           "optional": false
5836         }
5837       ],
5838       "private": false,
5839       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5840       "linenr": 305,
5841       "html_filename": "Table2.html",
5842       "href": "Table2.html#Ext-panel-Table-event-beforeitemmouseleave",
5843       "shortDoc": "<p>Fires before the mouseleave event on an item is processed. Returns false to cancel the default action.</p>\n"
5844     },
5845     {
5846       "tagname": "event",
5847       "name": "beforeitemmouseup",
5848       "member": "Ext.panel.Table",
5849       "doc": "<p>Fires before the mouseup event on an item is processed. Returns false to cancel the default action.</p>\n",
5850       "params": [
5851         {
5852           "type": "Ext.view.View",
5853           "name": "this",
5854           "doc": "\n",
5855           "optional": false
5856         },
5857         {
5858           "type": "Ext.data.Model",
5859           "name": "record",
5860           "doc": "<p>The record that belongs to the item</p>\n",
5861           "optional": false
5862         },
5863         {
5864           "type": "HTMLElement",
5865           "name": "item",
5866           "doc": "<p>The item's element</p>\n",
5867           "optional": false
5868         },
5869         {
5870           "type": "Number",
5871           "name": "index",
5872           "doc": "<p>The item's index</p>\n",
5873           "optional": false
5874         },
5875         {
5876           "type": "Ext.EventObject",
5877           "name": "e",
5878           "doc": "<p>The raw event object</p>\n",
5879           "optional": false
5880         }
5881       ],
5882       "private": false,
5883       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
5884       "linenr": 285,
5885       "html_filename": "Table2.html",
5886       "href": "Table2.html#Ext-panel-Table-event-beforeitemmouseup",
5887       "shortDoc": "<p>Fires before the mouseup event on an item is processed. Returns false to cancel the default action.</p>\n"
5888     },
5889     {
5890       "tagname": "event",
5891       "name": "beforepropertychange",
5892       "member": "Ext.grid.property.Grid",
5893       "doc": "<p>Fires before a property value changes.  Handlers can return false to cancel the property change\n(this will internally call <a href=\"#/api/Ext.data.Record--reject\" rel=\"Ext.data.Record--reject\" class=\"docClass\">Ext.data.Record.reject</a> on the property's record).</p>\n",
5894       "params": [
5895         {
5896           "type": "Object",
5897           "name": "source",
5898           "doc": "<p>The source data object for the grid (corresponds to the same object passed in\nas the <a href=\"#/api/Ext.grid.property.Grid-cfg-source\" rel=\"Ext.grid.property.Grid-cfg-source\" class=\"docClass\">source</a> config property).</p>\n",
5899           "optional": false
5900         },
5901         {
5902           "type": "String",
5903           "name": "recordId",
5904           "doc": "<p>The record's id in the data store</p>\n",
5905           "optional": false
5906         },
5907         {
5908           "type": "Mixed",
5909           "name": "value",
5910           "doc": "<p>The current edited property value</p>\n",
5911           "optional": false
5912         },
5913         {
5914           "type": "Mixed",
5915           "name": "oldValue",
5916           "doc": "<p>The original property value prior to editing</p>\n",
5917           "optional": false
5918         }
5919       ],
5920       "private": false,
5921       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
5922       "linenr": 169,
5923       "html_filename": "Grid.html",
5924       "href": "Grid.html#Ext-grid-property-Grid-event-beforepropertychange",
5925       "shortDoc": "Fires before a property value changes.  Handlers can return false to cancel the property change\n(this will internally..."
5926     },
5927     {
5928       "tagname": "event",
5929       "name": "beforeremove",
5930       "member": "Ext.container.AbstractContainer",
5931       "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",
5932       "params": [
5933         {
5934           "type": "Ext.container.Container",
5935           "name": "this",
5936           "doc": "\n",
5937           "optional": false
5938         },
5939         {
5940           "type": "Ext.Component",
5941           "name": "component",
5942           "doc": "<p>The component being removed</p>\n",
5943           "optional": false
5944         }
5945       ],
5946       "private": false,
5947       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
5948       "linenr": 207,
5949       "html_filename": "AbstractContainer.html",
5950       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-beforeremove",
5951       "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"
5952     },
5953     {
5954       "tagname": "event",
5955       "name": "beforerender",
5956       "member": "Ext.AbstractComponent",
5957       "doc": "<p>Fires before the component is <a href=\"#/api/Ext.grid.property.Grid-property-rendered\" rel=\"Ext.grid.property.Grid-property-rendered\" class=\"docClass\">rendered</a>. Return false from an\nevent handler to stop the <a href=\"#/api/Ext.grid.property.Grid-event-render\" rel=\"Ext.grid.property.Grid-event-render\" class=\"docClass\">render</a>.</p>\n",
5958       "params": [
5959         {
5960           "type": "Ext.Component",
5961           "name": "this",
5962           "doc": "\n",
5963           "optional": false
5964         }
5965       ],
5966       "private": false,
5967       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
5968       "linenr": 614,
5969       "html_filename": "AbstractComponent.html",
5970       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforerender",
5971       "shortDoc": "<p>Fires before the component is <a href=\"#/api/Ext.grid.property.Grid-property-rendered\" rel=\"Ext.grid.property.Grid-property-rendered\" class=\"docClass\">rendered</a>. Return false from an\nevent handler to stop the <a href=\"#/api/Ext.grid.property.Grid-event-render\" rel=\"Ext.grid.property.Grid-event-render\" class=\"docClass\">render</a>.</p>\n"
5972     },
5973     {
5974       "tagname": "event",
5975       "name": "beforeselect",
5976       "member": "Ext.panel.Table",
5977       "doc": "<p>Fires before a selection is made. If any handlers return false, the selection is cancelled.</p>\n",
5978       "params": [
5979         {
5980           "type": "Ext.view.View",
5981           "name": "this",
5982           "doc": "\n",
5983           "optional": false
5984         },
5985         {
5986           "type": "HTMLElement",
5987           "name": "node",
5988           "doc": "<p>The node to be selected</p>\n",
5989           "optional": false
5990         },
5991         {
5992           "type": "Array",
5993           "name": "selections",
5994           "doc": "<p>Array of currently selected nodes</p>\n",
5995           "optional": false
5996         }
5997       ],
5998       "private": false,
5999       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6000       "linenr": 514,
6001       "html_filename": "Table2.html",
6002       "href": "Table2.html#Ext-panel-Table-event-beforeselect",
6003       "shortDoc": "<p>Fires before a selection is made. If any handlers return false, the selection is cancelled.</p>\n"
6004     },
6005     {
6006       "tagname": "event",
6007       "name": "beforeshow",
6008       "member": "Ext.AbstractComponent",
6009       "doc": "<p>Fires before the component is shown when calling the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method.\nReturn false from an event handler to stop the show.</p>\n",
6010       "params": [
6011         {
6012           "type": "Ext.Component",
6013           "name": "this",
6014           "doc": "\n",
6015           "optional": false
6016         }
6017       ],
6018       "private": false,
6019       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6020       "linenr": 580,
6021       "html_filename": "AbstractComponent.html",
6022       "href": "AbstractComponent.html#Ext-AbstractComponent-event-beforeshow",
6023       "shortDoc": "<p>Fires before the component is shown when calling the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method.\nReturn false from an event handler to stop the show.</p>\n"
6024     },
6025     {
6026       "tagname": "event",
6027       "name": "beforestaterestore",
6028       "member": "Ext.state.Stateful",
6029       "doc": "<p>Fires before the state of the object is restored. Return false from an event handler to stop the restore.</p>\n",
6030       "params": [
6031         {
6032           "type": "Ext.state.Stateful",
6033           "name": "this",
6034           "doc": "\n",
6035           "optional": false
6036         },
6037         {
6038           "type": "Object",
6039           "name": "state",
6040           "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",
6041           "optional": false
6042         }
6043       ],
6044       "private": false,
6045       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
6046       "linenr": 101,
6047       "html_filename": "Stateful.html",
6048       "href": "Stateful.html#Ext-state-Stateful-event-beforestaterestore",
6049       "shortDoc": "<p>Fires before the state of the object is restored. Return false from an event handler to stop the restore.</p>\n"
6050     },
6051     {
6052       "tagname": "event",
6053       "name": "beforestatesave",
6054       "member": "Ext.state.Stateful",
6055       "doc": "<p>Fires before the state of the object is saved to the configured state provider. Return false to stop the save.</p>\n",
6056       "params": [
6057         {
6058           "type": "Ext.state.Stateful",
6059           "name": "this",
6060           "doc": "\n",
6061           "optional": false
6062         },
6063         {
6064           "type": "Object",
6065           "name": "state",
6066           "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",
6067           "optional": false
6068         }
6069       ],
6070       "private": false,
6071       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
6072       "linenr": 122,
6073       "html_filename": "Stateful.html",
6074       "href": "Stateful.html#Ext-state-Stateful-event-beforestatesave",
6075       "shortDoc": "<p>Fires before the state of the object is saved to the configured state provider. Return false to stop the save.</p>\n"
6076     },
6077     {
6078       "tagname": "event",
6079       "name": "bodyresize",
6080       "member": "Ext.panel.AbstractPanel",
6081       "doc": "<p>Fires after the Panel has been resized.</p>\n",
6082       "params": [
6083         {
6084           "type": "Ext.panel.Panel",
6085           "name": "p",
6086           "doc": "<p>the Panel which has been resized.</p>\n",
6087           "optional": false
6088         },
6089         {
6090           "type": "Number",
6091           "name": "width",
6092           "doc": "<p>The Panel body's new width.</p>\n",
6093           "optional": false
6094         },
6095         {
6096           "type": "Number",
6097           "name": "height",
6098           "doc": "<p>The Panel body's new height.</p>\n",
6099           "optional": false
6100         }
6101       ],
6102       "private": false,
6103       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/panel/AbstractPanel.js",
6104       "linenr": 93,
6105       "html_filename": "AbstractPanel.html",
6106       "href": "AbstractPanel.html#Ext-panel-AbstractPanel-event-bodyresize",
6107       "shortDoc": "<p>Fires after the Panel has been resized.</p>\n"
6108     },
6109     {
6110       "tagname": "event",
6111       "name": "cardswitch",
6112       "member": "Ext.container.AbstractContainer",
6113       "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",
6114       "params": [
6115         {
6116           "type": "Ext.container.Container",
6117           "name": "this",
6118           "doc": "\n",
6119           "optional": false
6120         },
6121         {
6122           "type": "Ext.Component",
6123           "name": "newCard",
6124           "doc": "<p>The card that has been switched to</p>\n",
6125           "optional": false
6126         },
6127         {
6128           "type": "Ext.Component",
6129           "name": "oldCard",
6130           "doc": "<p>The card that has been switched from</p>\n",
6131           "optional": false
6132         },
6133         {
6134           "type": "Number",
6135           "name": "index",
6136           "doc": "<p>The index of the card that has been switched to</p>\n",
6137           "optional": false
6138         },
6139         {
6140           "type": "Boolean",
6141           "name": "animated",
6142           "doc": "<p>True if this cardswitch was animated</p>\n",
6143           "optional": false
6144         }
6145       ],
6146       "private": false,
6147       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
6148       "linenr": 246,
6149       "html_filename": "AbstractContainer.html",
6150       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-cardswitch",
6151       "shortDoc": "Fires after this container switches the active card. If the card\nis switched using an animation, this event will fire..."
6152     },
6153     {
6154       "tagname": "event",
6155       "name": "containerclick",
6156       "member": "Ext.panel.Table",
6157       "doc": "<p>Fires when the container is clicked.</p>\n",
6158       "params": [
6159         {
6160           "type": "Ext.view.View",
6161           "name": "this",
6162           "doc": "\n",
6163           "optional": false
6164         },
6165         {
6166           "type": "Ext.EventObject",
6167           "name": "e",
6168           "doc": "<p>The raw event object</p>\n",
6169           "optional": false
6170         }
6171       ],
6172       "private": false,
6173       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6174       "linenr": 485,
6175       "html_filename": "Table2.html",
6176       "href": "Table2.html#Ext-panel-Table-event-containerclick",
6177       "shortDoc": "<p>Fires when the container is clicked.</p>\n"
6178     },
6179     {
6180       "tagname": "event",
6181       "name": "containercontextmenu",
6182       "member": "Ext.panel.Table",
6183       "doc": "<p>Fires when the container is right clicked.</p>\n",
6184       "params": [
6185         {
6186           "type": "Ext.view.View",
6187           "name": "this",
6188           "doc": "\n",
6189           "optional": false
6190         },
6191         {
6192           "type": "Ext.EventObject",
6193           "name": "e",
6194           "doc": "<p>The raw event object</p>\n",
6195           "optional": false
6196         }
6197       ],
6198       "private": false,
6199       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6200       "linenr": 499,
6201       "html_filename": "Table2.html",
6202       "href": "Table2.html#Ext-panel-Table-event-containercontextmenu",
6203       "shortDoc": "<p>Fires when the container is right clicked.</p>\n"
6204     },
6205     {
6206       "tagname": "event",
6207       "name": "containerdblclick",
6208       "member": "Ext.panel.Table",
6209       "doc": "<p>Fires when the container is double clicked.</p>\n",
6210       "params": [
6211         {
6212           "type": "Ext.view.View",
6213           "name": "this",
6214           "doc": "\n",
6215           "optional": false
6216         },
6217         {
6218           "type": "Ext.EventObject",
6219           "name": "e",
6220           "doc": "<p>The raw event object</p>\n",
6221           "optional": false
6222         }
6223       ],
6224       "private": false,
6225       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6226       "linenr": 492,
6227       "html_filename": "Table2.html",
6228       "href": "Table2.html#Ext-panel-Table-event-containerdblclick",
6229       "shortDoc": "<p>Fires when the container is double clicked.</p>\n"
6230     },
6231     {
6232       "tagname": "event",
6233       "name": "containermouseout",
6234       "member": "Ext.panel.Table",
6235       "doc": "<p>Fires when you move the mouse out of the container.</p>\n",
6236       "params": [
6237         {
6238           "type": "Ext.view.View",
6239           "name": "this",
6240           "doc": "\n",
6241           "optional": false
6242         },
6243         {
6244           "type": "Ext.EventObject",
6245           "name": "e",
6246           "doc": "<p>The raw event object</p>\n",
6247           "optional": false
6248         }
6249       ],
6250       "private": false,
6251       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6252       "linenr": 478,
6253       "html_filename": "Table2.html",
6254       "href": "Table2.html#Ext-panel-Table-event-containermouseout",
6255       "shortDoc": "<p>Fires when you move the mouse out of the container.</p>\n"
6256     },
6257     {
6258       "tagname": "event",
6259       "name": "containermouseover",
6260       "member": "Ext.panel.Table",
6261       "doc": "<p>Fires when you move the mouse over the container.</p>\n",
6262       "params": [
6263         {
6264           "type": "Ext.view.View",
6265           "name": "this",
6266           "doc": "\n",
6267           "optional": false
6268         },
6269         {
6270           "type": "Ext.EventObject",
6271           "name": "e",
6272           "doc": "<p>The raw event object</p>\n",
6273           "optional": false
6274         }
6275       ],
6276       "private": false,
6277       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6278       "linenr": 471,
6279       "html_filename": "Table2.html",
6280       "href": "Table2.html#Ext-panel-Table-event-containermouseover",
6281       "shortDoc": "<p>Fires when you move the mouse over the container.</p>\n"
6282     },
6283     {
6284       "tagname": "event",
6285       "name": "containermouseup",
6286       "member": "Ext.panel.Table",
6287       "doc": "<p>Fires when there is a mouse up on the container</p>\n",
6288       "params": [
6289         {
6290           "type": "Ext.view.View",
6291           "name": "this",
6292           "doc": "\n",
6293           "optional": false
6294         },
6295         {
6296           "type": "Ext.EventObject",
6297           "name": "e",
6298           "doc": "<p>The raw event object</p>\n",
6299           "optional": false
6300         }
6301       ],
6302       "private": false,
6303       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6304       "linenr": 464,
6305       "html_filename": "Table2.html",
6306       "href": "Table2.html#Ext-panel-Table-event-containermouseup",
6307       "shortDoc": "<p>Fires when there is a mouse up on the container</p>\n"
6308     },
6309     {
6310       "tagname": "event",
6311       "name": "deactivate",
6312       "member": "Ext.AbstractComponent",
6313       "doc": "<p>Fires after a Component has been visually deactivated.</p>\n",
6314       "params": [
6315         {
6316           "type": "Ext.Component",
6317           "name": "this",
6318           "doc": "\n",
6319           "optional": false
6320         }
6321       ],
6322       "private": false,
6323       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6324       "linenr": 554,
6325       "html_filename": "AbstractComponent.html",
6326       "href": "AbstractComponent.html#Ext-AbstractComponent-event-deactivate",
6327       "shortDoc": "<p>Fires after a Component has been visually deactivated.</p>\n"
6328     },
6329     {
6330       "tagname": "event",
6331       "name": "destroy",
6332       "member": "Ext.AbstractComponent",
6333       "doc": "<p>Fires after the component is <a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>ed.</p>\n",
6334       "params": [
6335         {
6336           "type": "Ext.Component",
6337           "name": "this",
6338           "doc": "\n",
6339           "optional": false
6340         }
6341       ],
6342       "private": false,
6343       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6344       "linenr": 641,
6345       "html_filename": "AbstractComponent.html",
6346       "href": "AbstractComponent.html#Ext-AbstractComponent-event-destroy",
6347       "shortDoc": "<p>Fires after the component is <a href=\"#/api/Ext.grid.property.Grid-event-destroy\" rel=\"Ext.grid.property.Grid-event-destroy\" class=\"docClass\">destroy</a>ed.</p>\n"
6348     },
6349     {
6350       "tagname": "event",
6351       "name": "disable",
6352       "member": "Ext.AbstractComponent",
6353       "doc": "<p>Fires after the component is disabled.</p>\n",
6354       "params": [
6355         {
6356           "type": "Ext.Component",
6357           "name": "this",
6358           "doc": "\n",
6359           "optional": false
6360         }
6361       ],
6362       "private": false,
6363       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6364       "linenr": 568,
6365       "html_filename": "AbstractComponent.html",
6366       "href": "AbstractComponent.html#Ext-AbstractComponent-event-disable",
6367       "shortDoc": "<p>Fires after the component is disabled.</p>\n"
6368     },
6369     {
6370       "tagname": "event",
6371       "name": "enable",
6372       "member": "Ext.AbstractComponent",
6373       "doc": "<p>Fires after the component is enabled.</p>\n",
6374       "params": [
6375         {
6376           "type": "Ext.Component",
6377           "name": "this",
6378           "doc": "\n",
6379           "optional": false
6380         }
6381       ],
6382       "private": false,
6383       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6384       "linenr": 574,
6385       "html_filename": "AbstractComponent.html",
6386       "href": "AbstractComponent.html#Ext-AbstractComponent-event-enable",
6387       "shortDoc": "<p>Fires after the component is enabled.</p>\n"
6388     },
6389     {
6390       "tagname": "event",
6391       "name": "hide",
6392       "member": "Ext.AbstractComponent",
6393       "doc": "<p>Fires after the component is hidden.\nFires after the component is hidden when calling the <a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a> method.</p>\n",
6394       "params": [
6395         {
6396           "type": "Ext.Component",
6397           "name": "this",
6398           "doc": "\n",
6399           "optional": false
6400         }
6401       ],
6402       "private": false,
6403       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6404       "linenr": 600,
6405       "html_filename": "AbstractComponent.html",
6406       "href": "AbstractComponent.html#Ext-AbstractComponent-event-hide",
6407       "shortDoc": "<p>Fires after the component is hidden.\nFires after the component is hidden when calling the <a href=\"#/api/Ext.grid.property.Grid-event-hide\" rel=\"Ext.grid.property.Grid-event-hide\" class=\"docClass\">hide</a> method.</p>\n"
6408     },
6409     {
6410       "tagname": "event",
6411       "name": "iconchange",
6412       "member": "Ext.panel.Panel",
6413       "doc": "<p>Fires after the Panel iconCls has been set or changed.</p>\n",
6414       "params": [
6415         {
6416           "type": "Ext.panel.Panel",
6417           "name": "p",
6418           "doc": "<p>the Panel which has been resized.</p>\n",
6419           "optional": false
6420         },
6421         {
6422           "type": "String",
6423           "name": "newIconCls",
6424           "doc": "<p>The new iconCls.</p>\n",
6425           "optional": false
6426         },
6427         {
6428           "type": "String",
6429           "name": "oldIconCls",
6430           "doc": "<p>The previous panel iconCls.</p>\n",
6431           "optional": false
6432         }
6433       ],
6434       "private": false,
6435       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
6436       "linenr": 323,
6437       "html_filename": "Panel3.html",
6438       "href": "Panel3.html#Ext-panel-Panel-event-iconchange",
6439       "shortDoc": "<p>Fires after the Panel iconCls has been set or changed.</p>\n"
6440     },
6441     {
6442       "tagname": "event",
6443       "name": "itemclick",
6444       "member": "Ext.panel.Table",
6445       "doc": "<p>Fires when an item is clicked.</p>\n",
6446       "params": [
6447         {
6448           "type": "Ext.view.View",
6449           "name": "this",
6450           "doc": "\n",
6451           "optional": false
6452         },
6453         {
6454           "type": "Ext.data.Model",
6455           "name": "record",
6456           "doc": "<p>The record that belongs to the item</p>\n",
6457           "optional": false
6458         },
6459         {
6460           "type": "HTMLElement",
6461           "name": "item",
6462           "doc": "<p>The item's element</p>\n",
6463           "optional": false
6464         },
6465         {
6466           "type": "Number",
6467           "name": "index",
6468           "doc": "<p>The item's index</p>\n",
6469           "optional": false
6470         },
6471         {
6472           "type": "Ext.EventObject",
6473           "name": "e",
6474           "doc": "<p>The raw event object</p>\n",
6475           "optional": false
6476         }
6477       ],
6478       "private": false,
6479       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6480       "linenr": 385,
6481       "html_filename": "Table2.html",
6482       "href": "Table2.html#Ext-panel-Table-event-itemclick",
6483       "shortDoc": "<p>Fires when an item is clicked.</p>\n"
6484     },
6485     {
6486       "tagname": "event",
6487       "name": "itemcontextmenu",
6488       "member": "Ext.panel.Table",
6489       "doc": "<p>Fires when an item is right clicked.</p>\n",
6490       "params": [
6491         {
6492           "type": "Ext.view.View",
6493           "name": "this",
6494           "doc": "\n",
6495           "optional": false
6496         },
6497         {
6498           "type": "Ext.data.Model",
6499           "name": "record",
6500           "doc": "<p>The record that belongs to the item</p>\n",
6501           "optional": false
6502         },
6503         {
6504           "type": "HTMLElement",
6505           "name": "item",
6506           "doc": "<p>The item's element</p>\n",
6507           "optional": false
6508         },
6509         {
6510           "type": "Number",
6511           "name": "index",
6512           "doc": "<p>The item's index</p>\n",
6513           "optional": false
6514         },
6515         {
6516           "type": "Ext.EventObject",
6517           "name": "e",
6518           "doc": "<p>The raw event object</p>\n",
6519           "optional": false
6520         }
6521       ],
6522       "private": false,
6523       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6524       "linenr": 405,
6525       "html_filename": "Table2.html",
6526       "href": "Table2.html#Ext-panel-Table-event-itemcontextmenu",
6527       "shortDoc": "<p>Fires when an item is right clicked.</p>\n"
6528     },
6529     {
6530       "tagname": "event",
6531       "name": "itemdblclick",
6532       "member": "Ext.panel.Table",
6533       "doc": "<p>Fires when an item is double clicked.</p>\n",
6534       "params": [
6535         {
6536           "type": "Ext.view.View",
6537           "name": "this",
6538           "doc": "\n",
6539           "optional": false
6540         },
6541         {
6542           "type": "Ext.data.Model",
6543           "name": "record",
6544           "doc": "<p>The record that belongs to the item</p>\n",
6545           "optional": false
6546         },
6547         {
6548           "type": "HTMLElement",
6549           "name": "item",
6550           "doc": "<p>The item's element</p>\n",
6551           "optional": false
6552         },
6553         {
6554           "type": "Number",
6555           "name": "index",
6556           "doc": "<p>The item's index</p>\n",
6557           "optional": false
6558         },
6559         {
6560           "type": "Ext.EventObject",
6561           "name": "e",
6562           "doc": "<p>The raw event object</p>\n",
6563           "optional": false
6564         }
6565       ],
6566       "private": false,
6567       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6568       "linenr": 395,
6569       "html_filename": "Table2.html",
6570       "href": "Table2.html#Ext-panel-Table-event-itemdblclick",
6571       "shortDoc": "<p>Fires when an item is double clicked.</p>\n"
6572     },
6573     {
6574       "tagname": "event",
6575       "name": "itemmousedown",
6576       "member": "Ext.panel.Table",
6577       "doc": "<p>Fires when there is a mouse down on an item</p>\n",
6578       "params": [
6579         {
6580           "type": "Ext.view.View",
6581           "name": "this",
6582           "doc": "\n",
6583           "optional": false
6584         },
6585         {
6586           "type": "Ext.data.Model",
6587           "name": "record",
6588           "doc": "<p>The record that belongs to the item</p>\n",
6589           "optional": false
6590         },
6591         {
6592           "type": "HTMLElement",
6593           "name": "item",
6594           "doc": "<p>The item's element</p>\n",
6595           "optional": false
6596         },
6597         {
6598           "type": "Number",
6599           "name": "index",
6600           "doc": "<p>The item's index</p>\n",
6601           "optional": false
6602         },
6603         {
6604           "type": "Ext.EventObject",
6605           "name": "e",
6606           "doc": "<p>The raw event object</p>\n",
6607           "optional": false
6608         }
6609       ],
6610       "private": false,
6611       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6612       "linenr": 345,
6613       "html_filename": "Table2.html",
6614       "href": "Table2.html#Ext-panel-Table-event-itemmousedown",
6615       "shortDoc": "<p>Fires when there is a mouse down on an item</p>\n"
6616     },
6617     {
6618       "tagname": "event",
6619       "name": "itemmouseenter",
6620       "member": "Ext.panel.Table",
6621       "doc": "<p>Fires when the mouse enters an item.</p>\n",
6622       "params": [
6623         {
6624           "type": "Ext.view.View",
6625           "name": "this",
6626           "doc": "\n",
6627           "optional": false
6628         },
6629         {
6630           "type": "Ext.data.Model",
6631           "name": "record",
6632           "doc": "<p>The record that belongs to the item</p>\n",
6633           "optional": false
6634         },
6635         {
6636           "type": "HTMLElement",
6637           "name": "item",
6638           "doc": "<p>The item's element</p>\n",
6639           "optional": false
6640         },
6641         {
6642           "type": "Number",
6643           "name": "index",
6644           "doc": "<p>The item's index</p>\n",
6645           "optional": false
6646         },
6647         {
6648           "type": "Ext.EventObject",
6649           "name": "e",
6650           "doc": "<p>The raw event object</p>\n",
6651           "optional": false
6652         }
6653       ],
6654       "private": false,
6655       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6656       "linenr": 365,
6657       "html_filename": "Table2.html",
6658       "href": "Table2.html#Ext-panel-Table-event-itemmouseenter",
6659       "shortDoc": "<p>Fires when the mouse enters an item.</p>\n"
6660     },
6661     {
6662       "tagname": "event",
6663       "name": "itemmouseleave",
6664       "member": "Ext.panel.Table",
6665       "doc": "<p>Fires when the mouse leaves an item.</p>\n",
6666       "params": [
6667         {
6668           "type": "Ext.view.View",
6669           "name": "this",
6670           "doc": "\n",
6671           "optional": false
6672         },
6673         {
6674           "type": "Ext.data.Model",
6675           "name": "record",
6676           "doc": "<p>The record that belongs to the item</p>\n",
6677           "optional": false
6678         },
6679         {
6680           "type": "HTMLElement",
6681           "name": "item",
6682           "doc": "<p>The item's element</p>\n",
6683           "optional": false
6684         },
6685         {
6686           "type": "Number",
6687           "name": "index",
6688           "doc": "<p>The item's index</p>\n",
6689           "optional": false
6690         },
6691         {
6692           "type": "Ext.EventObject",
6693           "name": "e",
6694           "doc": "<p>The raw event object</p>\n",
6695           "optional": false
6696         }
6697       ],
6698       "private": false,
6699       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6700       "linenr": 375,
6701       "html_filename": "Table2.html",
6702       "href": "Table2.html#Ext-panel-Table-event-itemmouseleave",
6703       "shortDoc": "<p>Fires when the mouse leaves an item.</p>\n"
6704     },
6705     {
6706       "tagname": "event",
6707       "name": "itemmouseup",
6708       "member": "Ext.panel.Table",
6709       "doc": "<p>Fires when there is a mouse up on an item</p>\n",
6710       "params": [
6711         {
6712           "type": "Ext.view.View",
6713           "name": "this",
6714           "doc": "\n",
6715           "optional": false
6716         },
6717         {
6718           "type": "Ext.data.Model",
6719           "name": "record",
6720           "doc": "<p>The record that belongs to the item</p>\n",
6721           "optional": false
6722         },
6723         {
6724           "type": "HTMLElement",
6725           "name": "item",
6726           "doc": "<p>The item's element</p>\n",
6727           "optional": false
6728         },
6729         {
6730           "type": "Number",
6731           "name": "index",
6732           "doc": "<p>The item's index</p>\n",
6733           "optional": false
6734         },
6735         {
6736           "type": "Ext.EventObject",
6737           "name": "e",
6738           "doc": "<p>The raw event object</p>\n",
6739           "optional": false
6740         }
6741       ],
6742       "private": false,
6743       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6744       "linenr": 355,
6745       "html_filename": "Table2.html",
6746       "href": "Table2.html#Ext-panel-Table-event-itemmouseup",
6747       "shortDoc": "<p>Fires when there is a mouse up on an item</p>\n"
6748     },
6749     {
6750       "tagname": "event",
6751       "name": "move",
6752       "member": "Ext.AbstractComponent",
6753       "doc": "<p>Fires after the component is moved.</p>\n",
6754       "params": [
6755         {
6756           "type": "Ext.Component",
6757           "name": "this",
6758           "doc": "\n",
6759           "optional": false
6760         },
6761         {
6762           "type": "Number",
6763           "name": "x",
6764           "doc": "<p>The new x position</p>\n",
6765           "optional": false
6766         },
6767         {
6768           "type": "Number",
6769           "name": "y",
6770           "doc": "<p>The new y position</p>\n",
6771           "optional": false
6772         }
6773       ],
6774       "private": false,
6775       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6776       "linenr": 655,
6777       "html_filename": "AbstractComponent.html",
6778       "href": "AbstractComponent.html#Ext-AbstractComponent-event-move",
6779       "shortDoc": "<p>Fires after the component is moved.</p>\n"
6780     },
6781     {
6782       "tagname": "event",
6783       "name": "propertychange",
6784       "member": "Ext.grid.property.Grid",
6785       "doc": "<p>Fires after a property value has changed.</p>\n",
6786       "params": [
6787         {
6788           "type": "Object",
6789           "name": "source",
6790           "doc": "<p>The source data object for the grid (corresponds to the same object passed in\nas the <a href=\"#/api/Ext.grid.property.Grid-cfg-source\" rel=\"Ext.grid.property.Grid-cfg-source\" class=\"docClass\">source</a> config property).</p>\n",
6791           "optional": false
6792         },
6793         {
6794           "type": "String",
6795           "name": "recordId",
6796           "doc": "<p>The record's id in the data store</p>\n",
6797           "optional": false
6798         },
6799         {
6800           "type": "Mixed",
6801           "name": "value",
6802           "doc": "<p>The current edited property value</p>\n",
6803           "optional": false
6804         },
6805         {
6806           "type": "Mixed",
6807           "name": "oldValue",
6808           "doc": "<p>The original property value prior to editing</p>\n",
6809           "optional": false
6810         }
6811       ],
6812       "private": false,
6813       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
6814       "linenr": 180,
6815       "html_filename": "Grid.html",
6816       "href": "Grid.html#Ext-grid-property-Grid-event-propertychange",
6817       "shortDoc": "<p>Fires after a property value has changed.</p>\n"
6818     },
6819     {
6820       "tagname": "event",
6821       "name": "remove",
6822       "member": "Ext.container.AbstractContainer",
6823       "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",
6824       "params": [
6825         {
6826           "type": "Ext.container.Container",
6827           "name": "this",
6828           "doc": "\n",
6829           "optional": false
6830         },
6831         {
6832           "type": "Ext.Component",
6833           "name": "component",
6834           "doc": "<p>The component that was removed</p>\n",
6835           "optional": false
6836         }
6837       ],
6838       "private": false,
6839       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/container/AbstractContainer.js",
6840       "linenr": 224,
6841       "html_filename": "AbstractContainer.html",
6842       "href": "AbstractContainer.html#Ext-container-AbstractContainer-event-remove",
6843       "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"
6844     },
6845     {
6846       "tagname": "event",
6847       "name": "removed",
6848       "member": "Ext.AbstractComponent",
6849       "doc": "<p>Fires when a component is removed from an Ext.container.Container</p>\n",
6850       "params": [
6851         {
6852           "type": "Ext.Component",
6853           "name": "this",
6854           "doc": "\n",
6855           "optional": false
6856         },
6857         {
6858           "type": "Ext.container.Container",
6859           "name": "ownerCt",
6860           "doc": "<p>Container which holds the component</p>\n",
6861           "optional": false
6862         }
6863       ],
6864       "private": false,
6865       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6866       "linenr": 607,
6867       "html_filename": "AbstractComponent.html",
6868       "href": "AbstractComponent.html#Ext-AbstractComponent-event-removed",
6869       "shortDoc": "<p>Fires when a component is removed from an Ext.container.Container</p>\n"
6870     },
6871     {
6872       "tagname": "event",
6873       "name": "render",
6874       "member": "Ext.AbstractComponent",
6875       "doc": "<p>Fires after the component markup is <a href=\"#/api/Ext.grid.property.Grid-property-rendered\" rel=\"Ext.grid.property.Grid-property-rendered\" class=\"docClass\">rendered</a>.</p>\n",
6876       "params": [
6877         {
6878           "type": "Ext.Component",
6879           "name": "this",
6880           "doc": "\n",
6881           "optional": false
6882         }
6883       ],
6884       "private": false,
6885       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6886       "linenr": 621,
6887       "html_filename": "AbstractComponent.html",
6888       "href": "AbstractComponent.html#Ext-AbstractComponent-event-render",
6889       "shortDoc": "<p>Fires after the component markup is <a href=\"#/api/Ext.grid.property.Grid-property-rendered\" rel=\"Ext.grid.property.Grid-property-rendered\" class=\"docClass\">rendered</a>.</p>\n"
6890     },
6891     {
6892       "tagname": "event",
6893       "name": "resize",
6894       "member": "Ext.AbstractComponent",
6895       "doc": "<p>Fires after the component is resized.</p>\n",
6896       "params": [
6897         {
6898           "type": "Ext.Component",
6899           "name": "this",
6900           "doc": "\n",
6901           "optional": false
6902         },
6903         {
6904           "type": "Number",
6905           "name": "adjWidth",
6906           "doc": "<p>The box-adjusted width that was set</p>\n",
6907           "optional": false
6908         },
6909         {
6910           "type": "Number",
6911           "name": "adjHeight",
6912           "doc": "<p>The box-adjusted height that was set</p>\n",
6913           "optional": false
6914         }
6915       ],
6916       "private": false,
6917       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
6918       "linenr": 647,
6919       "html_filename": "AbstractComponent.html",
6920       "href": "AbstractComponent.html#Ext-AbstractComponent-event-resize",
6921       "shortDoc": "<p>Fires after the component is resized.</p>\n"
6922     },
6923     {
6924       "tagname": "event",
6925       "name": "scrollerhide",
6926       "member": "Ext.panel.Table",
6927       "doc": "<p>Fires when a scroller is hidden</p>\n",
6928       "params": [
6929         {
6930           "type": "Ext.grid.Scroller",
6931           "name": "scroller",
6932           "doc": "\n",
6933           "optional": false
6934         },
6935         {
6936           "type": "String",
6937           "name": "orientation",
6938           "doc": "<p>Orientation, can be 'vertical' or 'horizontal'</p>\n",
6939           "optional": false
6940         }
6941       ],
6942       "private": false,
6943       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6944       "linenr": 160,
6945       "html_filename": "Table2.html",
6946       "href": "Table2.html#Ext-panel-Table-event-scrollerhide",
6947       "shortDoc": "<p>Fires when a scroller is hidden</p>\n"
6948     },
6949     {
6950       "tagname": "event",
6951       "name": "scrollershow",
6952       "member": "Ext.panel.Table",
6953       "doc": "<p>Fires when a scroller is shown</p>\n",
6954       "params": [
6955         {
6956           "type": "Ext.grid.Scroller",
6957           "name": "scroller",
6958           "doc": "\n",
6959           "optional": false
6960         },
6961         {
6962           "type": "String",
6963           "name": "orientation",
6964           "doc": "<p>Orientation, can be 'vertical' or 'horizontal'</p>\n",
6965           "optional": false
6966         }
6967       ],
6968       "private": false,
6969       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6970       "linenr": 167,
6971       "html_filename": "Table2.html",
6972       "href": "Table2.html#Ext-panel-Table-event-scrollershow",
6973       "shortDoc": "<p>Fires when a scroller is shown</p>\n"
6974     },
6975     {
6976       "tagname": "event",
6977       "name": "selectionchange",
6978       "member": "Ext.panel.Table",
6979       "doc": "<p>Fires when the selected nodes change. Relayed event from the underlying selection model.</p>\n",
6980       "params": [
6981         {
6982           "type": "Ext.view.View",
6983           "name": "this",
6984           "doc": "\n",
6985           "optional": false
6986         },
6987         {
6988           "type": "Array",
6989           "name": "selections",
6990           "doc": "<p>Array of the selected nodes</p>\n",
6991           "optional": false
6992         }
6993       ],
6994       "private": false,
6995       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Table.js",
6996       "linenr": 507,
6997       "html_filename": "Table2.html",
6998       "href": "Table2.html#Ext-panel-Table-event-selectionchange",
6999       "shortDoc": "<p>Fires when the selected nodes change. Relayed event from the underlying selection model.</p>\n"
7000     },
7001     {
7002       "tagname": "event",
7003       "name": "show",
7004       "member": "Ext.AbstractComponent",
7005       "doc": "<p>Fires after the component is shown when calling the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method.</p>\n",
7006       "params": [
7007         {
7008           "type": "Ext.Component",
7009           "name": "this",
7010           "doc": "\n",
7011           "optional": false
7012         }
7013       ],
7014       "private": false,
7015       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/AbstractComponent.js",
7016       "linenr": 587,
7017       "html_filename": "AbstractComponent.html",
7018       "href": "AbstractComponent.html#Ext-AbstractComponent-event-show",
7019       "shortDoc": "<p>Fires after the component is shown when calling the <a href=\"#/api/Ext.grid.property.Grid-event-show\" rel=\"Ext.grid.property.Grid-event-show\" class=\"docClass\">show</a> method.</p>\n"
7020     },
7021     {
7022       "tagname": "event",
7023       "name": "staterestore",
7024       "member": "Ext.state.Stateful",
7025       "doc": "<p>Fires after the state of the object is restored.</p>\n",
7026       "params": [
7027         {
7028           "type": "Ext.state.Stateful",
7029           "name": "this",
7030           "doc": "\n",
7031           "optional": false
7032         },
7033         {
7034           "type": "Object",
7035           "name": "state",
7036           "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",
7037           "optional": false
7038         }
7039       ],
7040       "private": false,
7041       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
7042       "linenr": 112,
7043       "html_filename": "Stateful.html",
7044       "href": "Stateful.html#Ext-state-Stateful-event-staterestore",
7045       "shortDoc": "<p>Fires after the state of the object is restored.</p>\n"
7046     },
7047     {
7048       "tagname": "event",
7049       "name": "statesave",
7050       "member": "Ext.state.Stateful",
7051       "doc": "<p>Fires after the state of the object is saved to the configured state provider.</p>\n",
7052       "params": [
7053         {
7054           "type": "Ext.state.Stateful",
7055           "name": "this",
7056           "doc": "\n",
7057           "optional": false
7058         },
7059         {
7060           "type": "Object",
7061           "name": "state",
7062           "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",
7063           "optional": false
7064         }
7065       ],
7066       "private": false,
7067       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/state/Stateful.js",
7068       "linenr": 133,
7069       "html_filename": "Stateful.html",
7070       "href": "Stateful.html#Ext-state-Stateful-event-statesave",
7071       "shortDoc": "<p>Fires after the state of the object is saved to the configured state provider.</p>\n"
7072     },
7073     {
7074       "tagname": "event",
7075       "name": "titlechange",
7076       "member": "Ext.panel.Panel",
7077       "doc": "<p>Fires after the Panel title has been set or changed.</p>\n",
7078       "params": [
7079         {
7080           "type": "Ext.panel.Panel",
7081           "name": "p",
7082           "doc": "<p>the Panel which has been resized.</p>\n",
7083           "optional": false
7084         },
7085         {
7086           "type": "String",
7087           "name": "newTitle",
7088           "doc": "<p>The new title.</p>\n",
7089           "optional": false
7090         },
7091         {
7092           "type": "String",
7093           "name": "oldTitle",
7094           "doc": "<p>The previous panel title.</p>\n",
7095           "optional": false
7096         }
7097       ],
7098       "private": false,
7099       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/panel/Panel.js",
7100       "linenr": 315,
7101       "html_filename": "Panel3.html",
7102       "href": "Panel3.html#Ext-panel-Panel-event-titlechange",
7103       "shortDoc": "<p>Fires after the Panel title has been set or changed.</p>\n"
7104     }
7105   ],
7106   "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/grid/property/Grid.js",
7107   "linenr": 1,
7108   "html_filename": "Grid.html",
7109   "href": "Grid.html#Ext-grid-property-Grid",
7110   "cssVar": [
7111
7112   ],
7113   "cssMixin": [
7114
7115   ],
7116   "component": true,
7117   "superclasses": [
7118     "Ext.AbstractComponent",
7119     "Ext.Component",
7120     "Ext.container.AbstractContainer",
7121     "Ext.container.Container",
7122     "Ext.panel.AbstractPanel",
7123     "Ext.panel.Panel",
7124     "Ext.panel.Table",
7125     "Ext.grid.Panel"
7126   ],
7127   "subclasses": [
7128
7129   ],
7130   "mixedInto": [
7131
7132   ],
7133   "allMixins": [
7134     "Ext.util.Floating",
7135     "Ext.util.Observable",
7136     "Ext.util.Animate",
7137     "Ext.state.Stateful"
7138   ]
7139 });