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