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