Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.ElementLoader.js
1 Ext.data.JsonP.Ext_ElementLoader({
2   "allMixins": [
3     "Ext.util.Observable"
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9       {
10         "type": "Object",
11         "deprecated": null,
12         "alias": null,
13         "protected": false,
14         "tagname": "cfg",
15         "href": "ElementLoader.html#Ext-ElementLoader-cfg-ajaxOptions",
16         "shortDoc": "Any additional options to be passed to the request, for example timeout or headers. ...",
17         "static": false,
18         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
19         "private": false,
20         "name": "ajaxOptions",
21         "owner": "Ext.ElementLoader",
22         "doc": "<p>Any additional options to be passed to the request, for example timeout or headers. Defaults to <tt>null</tt>.</p>\n",
23         "linenr": 75,
24         "html_filename": "ElementLoader.html"
25       },
26       {
27         "type": "Boolean/Object",
28         "deprecated": null,
29         "alias": null,
30         "protected": false,
31         "tagname": "cfg",
32         "href": "ElementLoader.html#Ext-ElementLoader-cfg-autoLoad",
33         "shortDoc": "True to have the loader make a request as soon as it is created. ...",
34         "static": false,
35         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
36         "private": false,
37         "name": "autoLoad",
38         "owner": "Ext.ElementLoader",
39         "doc": "<p>True to have the loader make a request as soon as it is created. Defaults to <tt>false</tt>.\nThis argument can also be a set of options that will be passed to <a href=\"#/api/Ext.ElementLoader-method-load\" rel=\"Ext.ElementLoader-method-load\" class=\"docClass\">load</a> is called.</p>\n",
40         "linenr": 59,
41         "html_filename": "ElementLoader.html"
42       },
43       {
44         "type": "Object",
45         "deprecated": null,
46         "alias": null,
47         "protected": false,
48         "tagname": "cfg",
49         "href": "ElementLoader.html#Ext-ElementLoader-cfg-baseParams",
50         "shortDoc": "Params that will be attached to every request. ...",
51         "static": false,
52         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
53         "private": false,
54         "name": "baseParams",
55         "owner": "Ext.ElementLoader",
56         "doc": "<p>Params that will be attached to every request. These parameters\nwill not be overridden by any params in the load options. Defaults to <tt>null</tt>.</p>\n",
57         "linenr": 53,
58         "html_filename": "ElementLoader.html"
59       },
60       {
61         "type": "Function",
62         "deprecated": null,
63         "alias": null,
64         "protected": false,
65         "tagname": "cfg",
66         "href": "ElementLoader.html#Ext-ElementLoader-cfg-failure",
67         "static": false,
68         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
69         "private": false,
70         "name": "failure",
71         "owner": "Ext.ElementLoader",
72         "doc": "<p>A function to be called when a load request fails.</p>\n",
73         "linenr": 89,
74         "html_filename": "ElementLoader.html"
75       },
76       {
77         "type": "Object",
78         "deprecated": null,
79         "alias": null,
80         "protected": false,
81         "tagname": "cfg",
82         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
83         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
84         "static": false,
85         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
86         "private": false,
87         "name": "listeners",
88         "owner": "Ext.util.Observable",
89         "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.ElementLoader-method-addListener\" rel=\"Ext.ElementLoader-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",
90         "linenr": 102,
91         "html_filename": "Observable.html"
92       },
93       {
94         "type": "Mixed",
95         "deprecated": null,
96         "alias": null,
97         "protected": false,
98         "tagname": "cfg",
99         "href": "ElementLoader.html#Ext-ElementLoader-cfg-loadMask",
100         "static": false,
101         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
102         "private": false,
103         "name": "loadMask",
104         "owner": "Ext.ElementLoader",
105         "doc": "<p>True or a string to show when the element is loading.</p>\n",
106         "linenr": 70,
107         "html_filename": "ElementLoader.html"
108       },
109       {
110         "type": "Object",
111         "deprecated": null,
112         "alias": null,
113         "protected": false,
114         "tagname": "cfg",
115         "href": "ElementLoader.html#Ext-ElementLoader-cfg-params",
116         "shortDoc": "Any params to be attached to the Ajax request. ...",
117         "static": false,
118         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
119         "private": false,
120         "name": "params",
121         "owner": "Ext.ElementLoader",
122         "doc": "<p>Any params to be attached to the Ajax request. These parameters will\nbe overridden by any params in the load options. Defaults to <tt>null</tt>.</p>\n",
123         "linenr": 47,
124         "html_filename": "ElementLoader.html"
125       },
126       {
127         "type": "Function",
128         "deprecated": null,
129         "alias": null,
130         "protected": false,
131         "tagname": "cfg",
132         "href": "ElementLoader.html#Ext-ElementLoader-cfg-renderer",
133         "shortDoc": "A custom function to render the content to the element. ...",
134         "static": false,
135         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
136         "private": false,
137         "name": "renderer",
138         "owner": "Ext.ElementLoader",
139         "doc": "<p>A custom function to render the content to the element. The passed parameters\nare</p>\n\n<ul>\n<li>The loader</li>\n<li>The response</li>\n<li>The active request</li>\n</ul>\n\n",
140         "linenr": 97,
141         "html_filename": "ElementLoader.html"
142       },
143       {
144         "type": "Object",
145         "deprecated": null,
146         "alias": null,
147         "protected": false,
148         "tagname": "cfg",
149         "href": "ElementLoader.html#Ext-ElementLoader-cfg-scope",
150         "static": false,
151         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
152         "private": false,
153         "name": "scope",
154         "owner": "Ext.ElementLoader",
155         "doc": "<p>The scope to execute the <a href=\"#/api/Ext.ElementLoader-cfg-success\" rel=\"Ext.ElementLoader-cfg-success\" class=\"docClass\">success</a> and <a href=\"#/api/Ext.ElementLoader-cfg-failure\" rel=\"Ext.ElementLoader-cfg-failure\" class=\"docClass\">failure</a> functions in.</p>\n",
156         "linenr": 93,
157         "html_filename": "ElementLoader.html"
158       },
159       {
160         "type": "Boolean",
161         "deprecated": null,
162         "alias": null,
163         "protected": false,
164         "tagname": "cfg",
165         "href": "ElementLoader.html#Ext-ElementLoader-cfg-scripts",
166         "static": false,
167         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
168         "private": false,
169         "name": "scripts",
170         "owner": "Ext.ElementLoader",
171         "doc": "<p>True to parse any inline script tags in the response.</p>\n",
172         "linenr": 80,
173         "html_filename": "ElementLoader.html"
174       },
175       {
176         "type": "Function",
177         "deprecated": null,
178         "alias": null,
179         "protected": false,
180         "tagname": "cfg",
181         "href": "ElementLoader.html#Ext-ElementLoader-cfg-success",
182         "static": false,
183         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
184         "private": false,
185         "name": "success",
186         "owner": "Ext.ElementLoader",
187         "doc": "<p>A function to be called when a load request is successful.</p>\n",
188         "linenr": 85,
189         "html_filename": "ElementLoader.html"
190       },
191       {
192         "type": "Mixed",
193         "deprecated": null,
194         "alias": null,
195         "protected": false,
196         "tagname": "cfg",
197         "href": "ElementLoader.html#Ext-ElementLoader-cfg-target",
198         "shortDoc": "The target element for the loader. ...",
199         "static": false,
200         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
201         "private": false,
202         "name": "target",
203         "owner": "Ext.ElementLoader",
204         "doc": "<p>The target element for the loader. It can be the DOM element, the id or an Ext.Element.</p>\n",
205         "linenr": 65,
206         "html_filename": "ElementLoader.html"
207       },
208       {
209         "type": "String",
210         "deprecated": null,
211         "alias": null,
212         "protected": false,
213         "tagname": "cfg",
214         "href": "ElementLoader.html#Ext-ElementLoader-cfg-url",
215         "shortDoc": "The url to retrieve the content from. ...",
216         "static": false,
217         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
218         "private": false,
219         "name": "url",
220         "owner": "Ext.ElementLoader",
221         "doc": "<p>The url to retrieve the content from. Defaults to <tt>null</tt>.</p>\n",
222         "linenr": 42,
223         "html_filename": "ElementLoader.html"
224       }
225     ],
226     "method": [
227       {
228         "deprecated": null,
229         "alias": null,
230         "protected": false,
231         "tagname": "method",
232         "href": "ElementLoader.html#Ext-ElementLoader-method-abort",
233         "shortDoc": "Aborts the active load request ...",
234         "static": false,
235         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
236         "private": false,
237         "params": [
238
239         ],
240         "name": "abort",
241         "owner": "Ext.ElementLoader",
242         "doc": "<p>Aborts the active load request</p>\n",
243         "linenr": 180,
244         "return": {
245           "type": "void",
246           "doc": "\n"
247         },
248         "html_filename": "ElementLoader.html"
249       },
250       {
251         "deprecated": null,
252         "alias": null,
253         "protected": false,
254         "tagname": "method",
255         "href": "Observable.html#Ext-util-Observable-method-addEvents",
256         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
257         "static": false,
258         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
259         "private": false,
260         "params": [
261           {
262             "type": "Object/String",
263             "optional": false,
264             "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",
265             "name": "o"
266           },
267           {
268             "type": "String...",
269             "optional": false,
270             "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",
271             "name": "more"
272           }
273         ],
274         "name": "addEvents",
275         "owner": "Ext.util.Observable",
276         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
277         "linenr": 494,
278         "return": {
279           "type": "void",
280           "doc": "\n"
281         },
282         "html_filename": "Observable.html"
283       },
284       {
285         "deprecated": null,
286         "alias": null,
287         "protected": false,
288         "tagname": "method",
289         "href": "Observable.html#Ext-util-Observable-method-addListener",
290         "shortDoc": "Appends an event handler to this object. ...",
291         "static": false,
292         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
293         "private": false,
294         "params": [
295           {
296             "type": "String",
297             "optional": false,
298             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
299             "name": "eventName"
300           },
301           {
302             "type": "Function",
303             "optional": false,
304             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.ElementLoader-method-fireEvent\" rel=\"Ext.ElementLoader-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
305             "name": "handler"
306           },
307           {
308             "type": "Object",
309             "optional": true,
310             "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",
311             "name": "scope"
312           },
313           {
314             "type": "Object",
315             "optional": true,
316             "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",
317             "name": "options"
318           }
319         ],
320         "name": "addListener",
321         "owner": "Ext.util.Observable",
322         "doc": "<p>Appends an event handler to this object.</p>\n",
323         "linenr": 278,
324         "return": {
325           "type": "void",
326           "doc": "\n"
327         },
328         "html_filename": "Observable.html"
329       },
330       {
331         "deprecated": null,
332         "alias": null,
333         "protected": false,
334         "tagname": "method",
335         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
336         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
337         "static": false,
338         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
339         "private": false,
340         "params": [
341           {
342             "type": "Observable/Element",
343             "optional": false,
344             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
345             "name": "item"
346           },
347           {
348             "type": "Object/String",
349             "optional": false,
350             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
351             "name": "ename"
352           },
353           {
354             "type": "Function",
355             "optional": true,
356             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
357             "name": "fn"
358           },
359           {
360             "type": "Object",
361             "optional": true,
362             "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",
363             "name": "scope"
364           },
365           {
366             "type": "Object",
367             "optional": true,
368             "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",
369             "name": "opt"
370           }
371         ],
372         "name": "addManagedListener",
373         "owner": "Ext.util.Observable",
374         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
375         "linenr": 156,
376         "return": {
377           "type": "void",
378           "doc": "\n"
379         },
380         "html_filename": "Observable.html"
381       },
382       {
383         "deprecated": null,
384         "alias": null,
385         "protected": false,
386         "tagname": "method",
387         "href": "Base3.html#Ext-Base-method-addStatics",
388         "shortDoc": "Add / override static properties of this class. ...",
389         "static": true,
390         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
391         "private": false,
392         "params": [
393           {
394             "type": "Object",
395             "optional": false,
396             "doc": "\n",
397             "name": "members"
398           }
399         ],
400         "name": "addStatics",
401         "owner": "Ext.Base",
402         "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",
403         "linenr": 388,
404         "return": {
405           "type": "Ext.Base",
406           "doc": "<p>this</p>\n"
407         },
408         "html_filename": "Base3.html"
409       },
410       {
411         "deprecated": null,
412         "alias": null,
413         "protected": false,
414         "tagname": "method",
415         "href": "Base3.html#Ext-Base-method-callOverridden",
416         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
417         "static": false,
418         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
419         "private": false,
420         "params": [
421           {
422             "type": "Array/Arguments",
423             "optional": false,
424             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
425             "name": "args"
426           }
427         ],
428         "name": "callOverridden",
429         "owner": "Ext.Base",
430         "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",
431         "linenr": 269,
432         "return": {
433           "type": "Mixed",
434           "doc": "<p>Returns the result after calling the overridden method</p>\n"
435         },
436         "html_filename": "Base3.html"
437       },
438       {
439         "deprecated": null,
440         "alias": null,
441         "protected": true,
442         "tagname": "method",
443         "href": "Base3.html#Ext-Base-method-callParent",
444         "shortDoc": "Call the parent's overridden method. ...",
445         "static": false,
446         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
447         "private": false,
448         "params": [
449           {
450             "type": "Array/Arguments",
451             "optional": false,
452             "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",
453             "name": "args"
454           }
455         ],
456         "name": "callParent",
457         "owner": "Ext.Base",
458         "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",
459         "linenr": 124,
460         "return": {
461           "type": "Mixed",
462           "doc": "<p>Returns the result from the superclass' method</p>\n"
463         },
464         "html_filename": "Base3.html"
465       },
466       {
467         "deprecated": null,
468         "alias": null,
469         "protected": false,
470         "tagname": "method",
471         "href": "Observable.html#Ext-util-Observable-method-capture",
472         "shortDoc": "Starts capture on the specified Observable. ...",
473         "static": true,
474         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
475         "private": false,
476         "params": [
477           {
478             "type": "Observable",
479             "optional": false,
480             "doc": "<p>The Observable to capture events from.</p>\n",
481             "name": "o"
482           },
483           {
484             "type": "Function",
485             "optional": false,
486             "doc": "<p>The function to call when an event is fired.</p>\n",
487             "name": "fn"
488           },
489           {
490             "type": "Object",
491             "optional": true,
492             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
493             "name": "scope"
494           }
495         ],
496         "name": "capture",
497         "owner": "Ext.util.Observable",
498         "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",
499         "linenr": 54,
500         "return": {
501           "type": "void",
502           "doc": "\n"
503         },
504         "html_filename": "Observable.html"
505       },
506       {
507         "deprecated": null,
508         "alias": null,
509         "protected": false,
510         "tagname": "method",
511         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
512         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
513         "static": false,
514         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
515         "private": false,
516         "params": [
517
518         ],
519         "name": "clearListeners",
520         "owner": "Ext.util.Observable",
521         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
522         "linenr": 425,
523         "return": {
524           "type": "void",
525           "doc": "\n"
526         },
527         "html_filename": "Observable.html"
528       },
529       {
530         "deprecated": null,
531         "alias": null,
532         "protected": false,
533         "tagname": "method",
534         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
535         "shortDoc": "Removes all managed listeners for this object. ...",
536         "static": false,
537         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
538         "private": false,
539         "params": [
540
541         ],
542         "name": "clearManagedListeners",
543         "owner": "Ext.util.Observable",
544         "doc": "<p>Removes all managed listeners for this object.</p>\n",
545         "linenr": 454,
546         "return": {
547           "type": "void",
548           "doc": "\n"
549         },
550         "html_filename": "Observable.html"
551       },
552       {
553         "deprecated": null,
554         "alias": null,
555         "protected": false,
556         "tagname": "method",
557         "href": "Base3.html#Ext-Base-method-create",
558         "shortDoc": "Create a new instance of this Class. ...",
559         "static": true,
560         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
561         "private": false,
562         "params": [
563
564         ],
565         "name": "create",
566         "owner": "Ext.Base",
567         "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",
568         "linenr": 329,
569         "return": {
570           "type": "Object",
571           "doc": "<p>the created instance.</p>\n"
572         },
573         "html_filename": "Base3.html"
574       },
575       {
576         "deprecated": null,
577         "alias": null,
578         "protected": false,
579         "tagname": "method",
580         "href": "Base3.html#Ext-Base-method-createAlias",
581         "shortDoc": "Create aliases for existing prototype methods. ...",
582         "static": true,
583         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
584         "private": false,
585         "params": [
586           {
587             "type": "String/Object",
588             "optional": false,
589             "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",
590             "name": "alias"
591           },
592           {
593             "type": "String/Object",
594             "optional": false,
595             "doc": "<p>The original method name</p>\n",
596             "name": "origin"
597           }
598         ],
599         "name": "createAlias",
600         "owner": "Ext.Base",
601         "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",
602         "linenr": 648,
603         "return": {
604           "type": "void",
605           "doc": "\n"
606         },
607         "html_filename": "Base3.html"
608       },
609       {
610         "deprecated": null,
611         "alias": null,
612         "protected": false,
613         "tagname": "method",
614         "href": "ElementLoader.html#Ext-ElementLoader-method-destroy",
615         "shortDoc": "Destroys the loader. ...",
616         "static": false,
617         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
618         "private": false,
619         "params": [
620
621         ],
622         "name": "destroy",
623         "owner": "Ext.ElementLoader",
624         "doc": "<p>Destroys the loader. Any active requests will be aborted.</p>\n",
625         "linenr": 364,
626         "return": {
627           "type": "void",
628           "doc": "\n"
629         },
630         "html_filename": "ElementLoader.html"
631       },
632       {
633         "deprecated": null,
634         "alias": null,
635         "protected": false,
636         "tagname": "method",
637         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
638         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
639         "static": false,
640         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
641         "private": false,
642         "params": [
643           {
644             "type": "String/[String]",
645             "optional": false,
646             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
647             "name": "events"
648           }
649         ],
650         "name": "enableBubble",
651         "owner": "Ext.util.Observable",
652         "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",
653         "linenr": 609,
654         "return": {
655           "type": "void",
656           "doc": "\n"
657         },
658         "html_filename": "Observable.html"
659       },
660       {
661         "deprecated": null,
662         "alias": null,
663         "protected": false,
664         "tagname": "method",
665         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
666         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
667         "static": false,
668         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
669         "private": false,
670         "params": [
671           {
672             "type": "String",
673             "optional": false,
674             "doc": "<p>The name of the event to fire.</p>\n",
675             "name": "eventName"
676           },
677           {
678             "type": "Object...",
679             "optional": false,
680             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
681             "name": "args"
682           }
683         ],
684         "name": "fireEvent",
685         "owner": "Ext.util.Observable",
686         "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.ElementLoader-method-addListener\" rel=\"Ext.ElementLoader-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.ElementLoader-method-enableBubble\" rel=\"Ext.ElementLoader-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
687         "linenr": 233,
688         "return": {
689           "type": "Boolean",
690           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
691         },
692         "html_filename": "Observable.html"
693       },
694       {
695         "deprecated": null,
696         "alias": null,
697         "protected": false,
698         "tagname": "method",
699         "href": "Base3.html#Ext-Base-method-getName",
700         "shortDoc": "Get the current class' name in string format. ...",
701         "static": false,
702         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
703         "private": false,
704         "params": [
705
706         ],
707         "name": "getName",
708         "owner": "Ext.Base",
709         "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",
710         "linenr": 631,
711         "return": {
712           "type": "String",
713           "doc": "<p>className</p>\n"
714         },
715         "html_filename": "Base3.html"
716       },
717       {
718         "deprecated": null,
719         "alias": null,
720         "protected": false,
721         "tagname": "method",
722         "href": "ElementLoader.html#Ext-ElementLoader-method-getTarget",
723         "shortDoc": "Get the target of this loader. ...",
724         "static": false,
725         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
726         "private": false,
727         "params": [
728
729         ],
730         "name": "getTarget",
731         "owner": "Ext.ElementLoader",
732         "doc": "<p>Get the target of this loader.</p>\n",
733         "linenr": 172,
734         "return": {
735           "type": "Ext.Component",
736           "doc": "<p>target The target, null if none exists.</p>\n"
737         },
738         "html_filename": "ElementLoader.html"
739       },
740       {
741         "deprecated": null,
742         "alias": null,
743         "protected": false,
744         "tagname": "method",
745         "href": "Observable.html#Ext-util-Observable-method-hasListener",
746         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
747         "static": false,
748         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
749         "private": false,
750         "params": [
751           {
752             "type": "String",
753             "optional": false,
754             "doc": "<p>The name of the event to check for</p>\n",
755             "name": "eventName"
756           }
757         ],
758         "name": "hasListener",
759         "owner": "Ext.util.Observable",
760         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
761         "linenr": 530,
762         "return": {
763           "type": "Boolean",
764           "doc": "<p>True if the event is being listened for, else false</p>\n"
765         },
766         "html_filename": "Observable.html"
767       },
768       {
769         "deprecated": null,
770         "alias": null,
771         "protected": false,
772         "tagname": "method",
773         "href": "Base3.html#Ext-Base-method-implement",
774         "shortDoc": "Add methods / properties to the prototype of this class. ...",
775         "static": true,
776         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
777         "private": false,
778         "params": [
779           {
780             "type": "Object",
781             "optional": false,
782             "doc": "\n",
783             "name": "members"
784           }
785         ],
786         "name": "implement",
787         "owner": "Ext.Base",
788         "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",
789         "linenr": 415,
790         "return": {
791           "type": "void",
792           "doc": "\n"
793         },
794         "html_filename": "Base3.html"
795       },
796       {
797         "deprecated": null,
798         "alias": null,
799         "protected": true,
800         "tagname": "method",
801         "href": "Base3.html#Ext-Base-method-initConfig",
802         "shortDoc": "Initialize configuration for this class. ...",
803         "static": false,
804         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
805         "private": false,
806         "params": [
807           {
808             "type": "Object",
809             "optional": false,
810             "doc": "\n",
811             "name": "config"
812           }
813         ],
814         "name": "initConfig",
815         "owner": "Ext.Base",
816         "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",
817         "linenr": 63,
818         "return": {
819           "type": "Object",
820           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
821         },
822         "html_filename": "Base3.html"
823       },
824       {
825         "deprecated": null,
826         "alias": null,
827         "protected": false,
828         "tagname": "method",
829         "href": "ElementLoader.html#Ext-ElementLoader-method-isAutoRefreshing",
830         "shortDoc": "Checks whether the loader is automatically refreshing. ...",
831         "static": false,
832         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
833         "private": false,
834         "params": [
835
836         ],
837         "name": "isAutoRefreshing",
838         "owner": "Ext.ElementLoader",
839         "doc": "<p>Checks whether the loader is automatically refreshing. See <a href=\"#/api/Ext.ElementLoader-method-startAutoRefresh\" rel=\"Ext.ElementLoader-method-startAutoRefresh\" class=\"docClass\">startAutoRefresh</a>.</p>\n",
840         "linenr": 356,
841         "return": {
842           "type": "Boolean",
843           "doc": "<p>True if the loader is automatically refreshing</p>\n"
844         },
845         "html_filename": "ElementLoader.html"
846       },
847       {
848         "deprecated": null,
849         "alias": null,
850         "protected": false,
851         "tagname": "method",
852         "href": "ElementLoader.html#Ext-ElementLoader-method-load",
853         "shortDoc": "Load new data from the server. ...",
854         "static": false,
855         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
856         "private": false,
857         "params": [
858           {
859             "type": "Object",
860             "optional": false,
861             "doc": "<p>The options for the request. They can be any configuration option that can be specified for\nthe class, with the exception of the target option. Note that any options passed to the method will override any\nclass defaults.</p>\n",
862             "name": "options"
863           }
864         ],
865         "name": "load",
866         "owner": "Ext.ElementLoader",
867         "doc": "<p>Load new data from the server.</p>\n",
868         "linenr": 211,
869         "return": {
870           "type": "void",
871           "doc": "\n"
872         },
873         "html_filename": "ElementLoader.html"
874       },
875       {
876         "deprecated": null,
877         "alias": {
878           "tagname": "alias",
879           "cls": "Ext.util.Observable",
880           "doc": null,
881           "owner": "addManagedListener"
882         },
883         "protected": false,
884         "tagname": "method",
885         "href": "Observable.html#Ext-util-Observable-method-mon",
886         "shortDoc": "Shorthand for addManagedListener. ...",
887         "static": false,
888         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
889         "private": false,
890         "params": [
891           {
892             "type": "Observable/Element",
893             "optional": false,
894             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
895             "name": "item"
896           },
897           {
898             "type": "Object/String",
899             "optional": false,
900             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
901             "name": "ename"
902           },
903           {
904             "type": "Function",
905             "optional": true,
906             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
907             "name": "fn"
908           },
909           {
910             "type": "Object",
911             "optional": true,
912             "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",
913             "name": "scope"
914           },
915           {
916             "type": "Object",
917             "optional": true,
918             "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",
919             "name": "opt"
920           }
921         ],
922         "name": "mon",
923         "owner": "Ext.util.Observable",
924         "doc": "<p>Shorthand for <a href=\"#/api/Ext.ElementLoader-method-addManagedListener\" rel=\"Ext.ElementLoader-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",
925         "linenr": 681,
926         "return": {
927           "type": "void",
928           "doc": "\n"
929         },
930         "html_filename": "Observable.html"
931       },
932       {
933         "deprecated": null,
934         "alias": {
935           "tagname": "alias",
936           "cls": "Ext.util.Observable",
937           "doc": null,
938           "owner": "removeManagedListener"
939         },
940         "protected": false,
941         "tagname": "method",
942         "href": "Observable.html#Ext-util-Observable-method-mun",
943         "shortDoc": "Shorthand for removeManagedListener. ...",
944         "static": false,
945         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
946         "private": false,
947         "params": [
948           {
949             "type": "Observable|Element",
950             "optional": false,
951             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
952             "name": "item"
953           },
954           {
955             "type": "Object|String",
956             "optional": false,
957             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
958             "name": "ename"
959           },
960           {
961             "type": "Function",
962             "optional": false,
963             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
964             "name": "fn"
965           },
966           {
967             "type": "Object",
968             "optional": false,
969             "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",
970             "name": "scope"
971           }
972         ],
973         "name": "mun",
974         "owner": "Ext.util.Observable",
975         "doc": "<p>Shorthand for <a href=\"#/api/Ext.ElementLoader-method-removeManagedListener\" rel=\"Ext.ElementLoader-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.ElementLoader-method-mon\" rel=\"Ext.ElementLoader-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
976         "linenr": 687,
977         "return": {
978           "type": "void",
979           "doc": "\n"
980         },
981         "html_filename": "Observable.html"
982       },
983       {
984         "deprecated": null,
985         "alias": null,
986         "protected": false,
987         "tagname": "method",
988         "href": "Observable.html#Ext-util-Observable-method-observe",
989         "shortDoc": "Sets observability on the passed class constructor. ...",
990         "static": true,
991         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
992         "private": false,
993         "params": [
994           {
995             "type": "Function",
996             "optional": false,
997             "doc": "<p>The class constructor to make observable.</p>\n",
998             "name": "c"
999           },
1000           {
1001             "type": "Object",
1002             "optional": false,
1003             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.ElementLoader-method-addListener\" rel=\"Ext.ElementLoader-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
1004             "name": "listeners"
1005           }
1006         ],
1007         "name": "observe",
1008         "owner": "Ext.util.Observable",
1009         "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",
1010         "linenr": 69,
1011         "return": {
1012           "type": "void",
1013           "doc": "\n"
1014         },
1015         "html_filename": "Observable.html"
1016       },
1017       {
1018         "deprecated": null,
1019         "alias": {
1020           "tagname": "alias",
1021           "cls": "Ext.util.Observable",
1022           "doc": null,
1023           "owner": "addListener"
1024         },
1025         "protected": false,
1026         "tagname": "method",
1027         "href": "Observable.html#Ext-util-Observable-method-on",
1028         "shortDoc": "Shorthand for addListener. ...",
1029         "static": false,
1030         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1031         "private": false,
1032         "params": [
1033           {
1034             "type": "String",
1035             "optional": false,
1036             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
1037             "name": "eventName"
1038           },
1039           {
1040             "type": "Function",
1041             "optional": false,
1042             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.ElementLoader-method-fireEvent\" rel=\"Ext.ElementLoader-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
1043             "name": "handler"
1044           },
1045           {
1046             "type": "Object",
1047             "optional": true,
1048             "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",
1049             "name": "scope"
1050           },
1051           {
1052             "type": "Object",
1053             "optional": true,
1054             "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",
1055             "name": "options"
1056           }
1057         ],
1058         "name": "on",
1059         "owner": "Ext.util.Observable",
1060         "doc": "<p>Shorthand for <a href=\"#/api/Ext.ElementLoader-method-addListener\" rel=\"Ext.ElementLoader-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
1061         "linenr": 669,
1062         "return": {
1063           "type": "void",
1064           "doc": "\n"
1065         },
1066         "html_filename": "Observable.html"
1067       },
1068       {
1069         "deprecated": null,
1070         "alias": null,
1071         "protected": false,
1072         "tagname": "method",
1073         "href": "Base3.html#Ext-Base-method-override",
1074         "shortDoc": "Override prototype members of this class. ...",
1075         "static": true,
1076         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1077         "private": false,
1078         "params": [
1079           {
1080             "type": "Object",
1081             "optional": false,
1082             "doc": "\n",
1083             "name": "members"
1084           }
1085         ],
1086         "name": "override",
1087         "owner": "Ext.Base",
1088         "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",
1089         "linenr": 518,
1090         "return": {
1091           "type": "Ext.Base",
1092           "doc": "<p>this</p>\n"
1093         },
1094         "html_filename": "Base3.html"
1095       },
1096       {
1097         "deprecated": null,
1098         "alias": null,
1099         "protected": false,
1100         "tagname": "method",
1101         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1102         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
1103         "static": false,
1104         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1105         "private": false,
1106         "params": [
1107           {
1108             "type": "Object",
1109             "optional": false,
1110             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1111             "name": "origin"
1112           },
1113           {
1114             "type": "[String]",
1115             "optional": false,
1116             "doc": "<p>Array of event names to relay.</p>\n",
1117             "name": "events"
1118           },
1119           {
1120             "type": "Object",
1121             "optional": false,
1122             "doc": "\n",
1123             "name": "prefix"
1124           }
1125         ],
1126         "name": "relayEvents",
1127         "owner": "Ext.util.Observable",
1128         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
1129         "linenr": 573,
1130         "return": {
1131           "type": "void",
1132           "doc": "\n"
1133         },
1134         "html_filename": "Observable.html"
1135       },
1136       {
1137         "deprecated": null,
1138         "alias": null,
1139         "protected": false,
1140         "tagname": "method",
1141         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1142         "shortDoc": "Removes all added captures from the Observable. ...",
1143         "static": true,
1144         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1145         "private": false,
1146         "params": [
1147           {
1148             "type": "Observable",
1149             "optional": false,
1150             "doc": "<p>The Observable to release</p>\n",
1151             "name": "o"
1152           }
1153         ],
1154         "name": "releaseCapture",
1155         "owner": "Ext.util.Observable",
1156         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
1157         "linenr": 44,
1158         "return": {
1159           "type": "void",
1160           "doc": "\n"
1161         },
1162         "html_filename": "Observable.html"
1163       },
1164       {
1165         "deprecated": null,
1166         "alias": null,
1167         "protected": false,
1168         "tagname": "method",
1169         "href": "Observable.html#Ext-util-Observable-method-removeListener",
1170         "shortDoc": "Removes an event handler. ...",
1171         "static": false,
1172         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1173         "private": false,
1174         "params": [
1175           {
1176             "type": "String",
1177             "optional": false,
1178             "doc": "<p>The type of event the handler was associated with.</p>\n",
1179             "name": "eventName"
1180           },
1181           {
1182             "type": "Function",
1183             "optional": false,
1184             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.ElementLoader-method-addListener\" rel=\"Ext.ElementLoader-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1185             "name": "handler"
1186           },
1187           {
1188             "type": "Object",
1189             "optional": true,
1190             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1191             "name": "scope"
1192           }
1193         ],
1194         "name": "removeListener",
1195         "owner": "Ext.util.Observable",
1196         "doc": "<p>Removes an event handler.</p>\n",
1197         "linenr": 392,
1198         "return": {
1199           "type": "void",
1200           "doc": "\n"
1201         },
1202         "html_filename": "Observable.html"
1203       },
1204       {
1205         "deprecated": null,
1206         "alias": null,
1207         "protected": false,
1208         "tagname": "method",
1209         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1210         "shortDoc": "Removes listeners that were added by the mon method. ...",
1211         "static": false,
1212         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1213         "private": false,
1214         "params": [
1215           {
1216             "type": "Observable|Element",
1217             "optional": false,
1218             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1219             "name": "item"
1220           },
1221           {
1222             "type": "Object|String",
1223             "optional": false,
1224             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1225             "name": "ename"
1226           },
1227           {
1228             "type": "Function",
1229             "optional": false,
1230             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1231             "name": "fn"
1232           },
1233           {
1234             "type": "Object",
1235             "optional": false,
1236             "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",
1237             "name": "scope"
1238           }
1239         ],
1240         "name": "removeManagedListener",
1241         "owner": "Ext.util.Observable",
1242         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.ElementLoader-method-mon\" rel=\"Ext.ElementLoader-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1243         "linenr": 197,
1244         "return": {
1245           "type": "void",
1246           "doc": "\n"
1247         },
1248         "html_filename": "Observable.html"
1249       },
1250       {
1251         "deprecated": null,
1252         "alias": null,
1253         "protected": false,
1254         "tagname": "method",
1255         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1256         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1257         "static": false,
1258         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1259         "private": false,
1260         "params": [
1261
1262         ],
1263         "name": "resumeEvents",
1264         "owner": "Ext.util.Observable",
1265         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.ElementLoader-method-suspendEvents\" rel=\"Ext.ElementLoader-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",
1266         "linenr": 554,
1267         "return": {
1268           "type": "void",
1269           "doc": "\n"
1270         },
1271         "html_filename": "Observable.html"
1272       },
1273       {
1274         "deprecated": null,
1275         "alias": null,
1276         "protected": false,
1277         "tagname": "method",
1278         "href": "ElementLoader.html#Ext-ElementLoader-method-setTarget",
1279         "shortDoc": "Set an {Ext.Element} as the target of this loader. ...",
1280         "static": false,
1281         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
1282         "private": false,
1283         "params": [
1284           {
1285             "type": "Mixed",
1286             "optional": false,
1287             "doc": "<p>The element</p>\n",
1288             "name": "target"
1289           }
1290         ],
1291         "name": "setTarget",
1292         "owner": "Ext.ElementLoader",
1293         "doc": "<p>Set an {Ext.Element} as the target of this loader. Note that if the target is changed,\nany active requests will be aborted.</p>\n",
1294         "linenr": 158,
1295         "return": {
1296           "type": "void",
1297           "doc": "\n"
1298         },
1299         "html_filename": "ElementLoader.html"
1300       },
1301       {
1302         "deprecated": null,
1303         "alias": null,
1304         "protected": false,
1305         "tagname": "method",
1306         "href": "ElementLoader.html#Ext-ElementLoader-method-startAutoRefresh",
1307         "shortDoc": "Automatically refreshes the content over a specified period. ...",
1308         "static": false,
1309         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
1310         "private": false,
1311         "params": [
1312           {
1313             "type": "Number",
1314             "optional": false,
1315             "doc": "<p>The interval to refresh in ms.</p>\n",
1316             "name": "interval"
1317           },
1318           {
1319             "type": "Object",
1320             "optional": true,
1321             "doc": "<p>(optional) The options to pass to the load method. See <a href=\"#/api/Ext.ElementLoader-method-load\" rel=\"Ext.ElementLoader-method-load\" class=\"docClass\">load</a></p>\n",
1322             "name": "options"
1323           }
1324         ],
1325         "name": "startAutoRefresh",
1326         "owner": "Ext.ElementLoader",
1327         "doc": "<p>Automatically refreshes the content over a specified period.</p>\n",
1328         "linenr": 335,
1329         "return": {
1330           "type": "void",
1331           "doc": "\n"
1332         },
1333         "html_filename": "ElementLoader.html"
1334       },
1335       {
1336         "deprecated": null,
1337         "alias": null,
1338         "protected": true,
1339         "tagname": "method",
1340         "href": "Base3.html#Ext-Base-method-statics",
1341         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1342         "static": false,
1343         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1344         "private": false,
1345         "params": [
1346
1347         ],
1348         "name": "statics",
1349         "owner": "Ext.Base",
1350         "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",
1351         "linenr": 199,
1352         "return": {
1353           "type": "Class",
1354           "doc": "\n"
1355         },
1356         "html_filename": "Base3.html"
1357       },
1358       {
1359         "deprecated": null,
1360         "alias": null,
1361         "protected": false,
1362         "tagname": "method",
1363         "href": "ElementLoader.html#Ext-ElementLoader-method-stopAutoRefresh",
1364         "shortDoc": "Clears any auto refresh. ...",
1365         "static": false,
1366         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
1367         "private": false,
1368         "params": [
1369
1370         ],
1371         "name": "stopAutoRefresh",
1372         "owner": "Ext.ElementLoader",
1373         "doc": "<p>Clears any auto refresh. See <a href=\"#/api/Ext.ElementLoader-method-startAutoRefresh\" rel=\"Ext.ElementLoader-method-startAutoRefresh\" class=\"docClass\">startAutoRefresh</a>.</p>\n",
1374         "linenr": 348,
1375         "return": {
1376           "type": "void",
1377           "doc": "\n"
1378         },
1379         "html_filename": "ElementLoader.html"
1380       },
1381       {
1382         "deprecated": null,
1383         "alias": null,
1384         "protected": false,
1385         "tagname": "method",
1386         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1387         "shortDoc": "Suspends the firing of all events. ...",
1388         "static": false,
1389         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1390         "private": false,
1391         "params": [
1392           {
1393             "type": "Boolean",
1394             "optional": false,
1395             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.ElementLoader-method-resumeEvents\" rel=\"Ext.ElementLoader-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1396             "name": "queueSuspended"
1397           }
1398         ],
1399         "name": "suspendEvents",
1400         "owner": "Ext.util.Observable",
1401         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.ElementLoader-method-resumeEvents\" rel=\"Ext.ElementLoader-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1402         "linenr": 541,
1403         "return": {
1404           "type": "void",
1405           "doc": "\n"
1406         },
1407         "html_filename": "Observable.html"
1408       },
1409       {
1410         "deprecated": null,
1411         "alias": {
1412           "tagname": "alias",
1413           "cls": "Ext.util.Observable",
1414           "doc": null,
1415           "owner": "removeListener"
1416         },
1417         "protected": false,
1418         "tagname": "method",
1419         "href": "Observable.html#Ext-util-Observable-method-un",
1420         "shortDoc": "Shorthand for removeListener. ...",
1421         "static": false,
1422         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1423         "private": false,
1424         "params": [
1425           {
1426             "type": "String",
1427             "optional": false,
1428             "doc": "<p>The type of event the handler was associated with.</p>\n",
1429             "name": "eventName"
1430           },
1431           {
1432             "type": "Function",
1433             "optional": false,
1434             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.ElementLoader-method-addListener\" rel=\"Ext.ElementLoader-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1435             "name": "handler"
1436           },
1437           {
1438             "type": "Object",
1439             "optional": true,
1440             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1441             "name": "scope"
1442           }
1443         ],
1444         "name": "un",
1445         "owner": "Ext.util.Observable",
1446         "doc": "<p>Shorthand for <a href=\"#/api/Ext.ElementLoader-method-removeListener\" rel=\"Ext.ElementLoader-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1447         "linenr": 675,
1448         "return": {
1449           "type": "void",
1450           "doc": "\n"
1451         },
1452         "html_filename": "Observable.html"
1453       }
1454     ],
1455     "property": [
1456       {
1457         "type": "Class",
1458         "deprecated": null,
1459         "alias": null,
1460         "protected": true,
1461         "tagname": "property",
1462         "href": "Base3.html#Ext-Base-property-self",
1463         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1464         "static": false,
1465         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1466         "private": false,
1467         "name": "self",
1468         "owner": "Ext.Base",
1469         "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",
1470         "linenr": 18,
1471         "html_filename": "Base3.html"
1472       }
1473     ],
1474     "cssVar": [
1475
1476     ],
1477     "cssMixin": [
1478
1479     ],
1480     "event": [
1481       {
1482         "deprecated": null,
1483         "alias": null,
1484         "protected": false,
1485         "tagname": "event",
1486         "href": "ElementLoader.html#Ext-ElementLoader-event-beforeload",
1487         "shortDoc": "Fires before a load request is made to the server. ...",
1488         "static": false,
1489         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
1490         "private": false,
1491         "params": [
1492           {
1493             "type": "Ext.ElementLoader",
1494             "optional": false,
1495             "doc": "\n",
1496             "name": "this"
1497           },
1498           {
1499             "type": "Object",
1500             "optional": false,
1501             "doc": "<p>The options passed to the request</p>\n",
1502             "name": "options"
1503           },
1504           {
1505             "type": "Object",
1506             "tagname": "param",
1507             "name": "options",
1508             "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"
1509           }
1510         ],
1511         "name": "beforeload",
1512         "owner": "Ext.ElementLoader",
1513         "doc": "<p>Fires before a load request is made to the server.\nReturning false from an event listener can prevent the load\nfrom occurring.</p>\n",
1514         "linenr": 117,
1515         "html_filename": "ElementLoader.html"
1516       },
1517       {
1518         "deprecated": null,
1519         "alias": null,
1520         "protected": false,
1521         "tagname": "event",
1522         "href": "ElementLoader.html#Ext-ElementLoader-event-exception",
1523         "shortDoc": "Fires after a successful load. ...",
1524         "static": false,
1525         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
1526         "private": false,
1527         "params": [
1528           {
1529             "type": "Ext.ElementLoader",
1530             "optional": false,
1531             "doc": "\n",
1532             "name": "this"
1533           },
1534           {
1535             "type": "Object",
1536             "optional": false,
1537             "doc": "<p>The response from the server</p>\n",
1538             "name": "response"
1539           },
1540           {
1541             "type": "Object",
1542             "optional": false,
1543             "doc": "<p>The options passed to the request</p>\n",
1544             "name": "options"
1545           },
1546           {
1547             "type": "Object",
1548             "tagname": "param",
1549             "name": "options",
1550             "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"
1551           }
1552         ],
1553         "name": "exception",
1554         "owner": "Ext.ElementLoader",
1555         "doc": "<p>Fires after a successful load.</p>\n",
1556         "linenr": 136,
1557         "html_filename": "ElementLoader.html"
1558       }
1559     ]
1560   },
1561   "singleton": false,
1562   "alias": null,
1563   "superclasses": [
1564     "Ext.Base"
1565   ],
1566   "protected": false,
1567   "tagname": "class",
1568   "mixins": [
1569     "Ext.util.Observable"
1570   ],
1571   "href": "ElementLoader.html#Ext-ElementLoader",
1572   "subclasses": [
1573     "Ext.ComponentLoader"
1574   ],
1575   "static": false,
1576   "author": null,
1577   "component": false,
1578   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ElementLoader.js",
1579   "private": false,
1580   "alternateClassNames": [
1581
1582   ],
1583   "name": "Ext.ElementLoader",
1584   "doc": "<p>A class used to load remote content to an Element. Sample usage:</p>\n\n<pre><code>Ext.get('el').load({\n    url: 'myPage.php',\n    scripts: true,\n    params: {\n        id: 1\n    }\n});\n</code></pre>\n\n\n<p>\nIn general this class will not be instanced directly, rather the <a href=\"#/api/Ext.core.Element-event-load\" rel=\"Ext.core.Element-event-load\" class=\"docClass\">Ext.core.Element.load</a> method\nwill be used.\n</p>\n\n",
1585   "mixedInto": [
1586
1587   ],
1588   "linenr": 1,
1589   "xtypes": [
1590
1591   ],
1592   "html_filename": "ElementLoader.html",
1593   "extends": "Ext.Base"
1594 });