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