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