Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.direct.Provider.js
1 Ext.data.JsonP.Ext_direct_Provider({
2   "allMixins": [
3     "Ext.util.Observable"
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9       {
10         "type": "String",
11         "deprecated": null,
12         "alias": null,
13         "protected": false,
14         "tagname": "cfg",
15         "href": "Provider2.html#Ext-direct-Provider-cfg-id",
16         "shortDoc": "The unique id of the provider (defaults to an auto-assigned id). ...",
17         "static": false,
18         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
19         "private": false,
20         "name": "id",
21         "owner": "Ext.direct.Provider",
22         "doc": "<p>The unique id of the provider (defaults to an <a href=\"#/api/Ext-method-id\" rel=\"Ext-method-id\" class=\"docClass\">auto-assigned id</a>).\nYou should assign an id if you need to be able to access the provider later and you do\nnot have an object reference available, for example:</p>\n\n<pre><code>Ext.direct.Manager.addProvider({\n    type: 'polling',\n    url:  'php/poll.php',\n    id:   'poll-provider'\n});     \nvar p = <a href=\"#/api/Ext.direct.Manager\" rel=\"Ext.direct.Manager\" class=\"docClass\">Ext.direct.Manager</a>.<a href=\"#/api/Ext.direct.Manager-method-getProvider\" rel=\"Ext.direct.Manager-method-getProvider\" class=\"docClass\">getProvider</a>('poll-provider');\np.disconnect();\n</code></pre>\n\n",
23         "linenr": 29,
24         "html_filename": "Provider2.html"
25       },
26       {
27         "type": "Object",
28         "deprecated": null,
29         "alias": null,
30         "protected": false,
31         "tagname": "cfg",
32         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
33         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
34         "static": false,
35         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
36         "private": false,
37         "name": "listeners",
38         "owner": "Ext.util.Observable",
39         "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.direct.Provider-method-addListener\" rel=\"Ext.direct.Provider-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",
40         "linenr": 102,
41         "html_filename": "Observable.html"
42       }
43     ],
44     "method": [
45       {
46         "deprecated": null,
47         "alias": null,
48         "protected": false,
49         "tagname": "method",
50         "href": "Observable.html#Ext-util-Observable-method-addEvents",
51         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
52         "static": false,
53         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
54         "private": false,
55         "params": [
56           {
57             "type": "Object/String",
58             "optional": false,
59             "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",
60             "name": "o"
61           },
62           {
63             "type": "String...",
64             "optional": false,
65             "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",
66             "name": "more"
67           }
68         ],
69         "name": "addEvents",
70         "owner": "Ext.util.Observable",
71         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
72         "linenr": 494,
73         "return": {
74           "type": "void",
75           "doc": "\n"
76         },
77         "html_filename": "Observable.html"
78       },
79       {
80         "deprecated": null,
81         "alias": null,
82         "protected": false,
83         "tagname": "method",
84         "href": "Observable.html#Ext-util-Observable-method-addListener",
85         "shortDoc": "Appends an event handler to this object. ...",
86         "static": false,
87         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
88         "private": false,
89         "params": [
90           {
91             "type": "String",
92             "optional": false,
93             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
94             "name": "eventName"
95           },
96           {
97             "type": "Function",
98             "optional": false,
99             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.direct.Provider-method-fireEvent\" rel=\"Ext.direct.Provider-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
100             "name": "handler"
101           },
102           {
103             "type": "Object",
104             "optional": true,
105             "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",
106             "name": "scope"
107           },
108           {
109             "type": "Object",
110             "optional": true,
111             "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",
112             "name": "options"
113           }
114         ],
115         "name": "addListener",
116         "owner": "Ext.util.Observable",
117         "doc": "<p>Appends an event handler to this object.</p>\n",
118         "linenr": 278,
119         "return": {
120           "type": "void",
121           "doc": "\n"
122         },
123         "html_filename": "Observable.html"
124       },
125       {
126         "deprecated": null,
127         "alias": null,
128         "protected": false,
129         "tagname": "method",
130         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
131         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
132         "static": false,
133         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
134         "private": false,
135         "params": [
136           {
137             "type": "Observable/Element",
138             "optional": false,
139             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
140             "name": "item"
141           },
142           {
143             "type": "Object/String",
144             "optional": false,
145             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
146             "name": "ename"
147           },
148           {
149             "type": "Function",
150             "optional": true,
151             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
152             "name": "fn"
153           },
154           {
155             "type": "Object",
156             "optional": true,
157             "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",
158             "name": "scope"
159           },
160           {
161             "type": "Object",
162             "optional": true,
163             "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",
164             "name": "opt"
165           }
166         ],
167         "name": "addManagedListener",
168         "owner": "Ext.util.Observable",
169         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
170         "linenr": 156,
171         "return": {
172           "type": "void",
173           "doc": "\n"
174         },
175         "html_filename": "Observable.html"
176       },
177       {
178         "deprecated": null,
179         "alias": null,
180         "protected": false,
181         "tagname": "method",
182         "href": "Base3.html#Ext-Base-method-addStatics",
183         "shortDoc": "Add / override static properties of this class. ...",
184         "static": true,
185         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
186         "private": false,
187         "params": [
188           {
189             "type": "Object",
190             "optional": false,
191             "doc": "\n",
192             "name": "members"
193           }
194         ],
195         "name": "addStatics",
196         "owner": "Ext.Base",
197         "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",
198         "linenr": 388,
199         "return": {
200           "type": "Ext.Base",
201           "doc": "<p>this</p>\n"
202         },
203         "html_filename": "Base3.html"
204       },
205       {
206         "deprecated": null,
207         "alias": null,
208         "protected": false,
209         "tagname": "method",
210         "href": "Base3.html#Ext-Base-method-callOverridden",
211         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
212         "static": false,
213         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
214         "private": false,
215         "params": [
216           {
217             "type": "Array/Arguments",
218             "optional": false,
219             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
220             "name": "args"
221           }
222         ],
223         "name": "callOverridden",
224         "owner": "Ext.Base",
225         "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",
226         "linenr": 269,
227         "return": {
228           "type": "Mixed",
229           "doc": "<p>Returns the result after calling the overridden method</p>\n"
230         },
231         "html_filename": "Base3.html"
232       },
233       {
234         "deprecated": null,
235         "alias": null,
236         "protected": true,
237         "tagname": "method",
238         "href": "Base3.html#Ext-Base-method-callParent",
239         "shortDoc": "Call the parent's overridden method. ...",
240         "static": false,
241         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
242         "private": false,
243         "params": [
244           {
245             "type": "Array/Arguments",
246             "optional": false,
247             "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",
248             "name": "args"
249           }
250         ],
251         "name": "callParent",
252         "owner": "Ext.Base",
253         "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",
254         "linenr": 124,
255         "return": {
256           "type": "Mixed",
257           "doc": "<p>Returns the result from the superclass' method</p>\n"
258         },
259         "html_filename": "Base3.html"
260       },
261       {
262         "deprecated": null,
263         "alias": null,
264         "protected": false,
265         "tagname": "method",
266         "href": "Observable.html#Ext-util-Observable-method-capture",
267         "shortDoc": "Starts capture on the specified Observable. ...",
268         "static": true,
269         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
270         "private": false,
271         "params": [
272           {
273             "type": "Observable",
274             "optional": false,
275             "doc": "<p>The Observable to capture events from.</p>\n",
276             "name": "o"
277           },
278           {
279             "type": "Function",
280             "optional": false,
281             "doc": "<p>The function to call when an event is fired.</p>\n",
282             "name": "fn"
283           },
284           {
285             "type": "Object",
286             "optional": true,
287             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
288             "name": "scope"
289           }
290         ],
291         "name": "capture",
292         "owner": "Ext.util.Observable",
293         "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",
294         "linenr": 54,
295         "return": {
296           "type": "void",
297           "doc": "\n"
298         },
299         "html_filename": "Observable.html"
300       },
301       {
302         "deprecated": null,
303         "alias": null,
304         "protected": false,
305         "tagname": "method",
306         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
307         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
308         "static": false,
309         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
310         "private": false,
311         "params": [
312
313         ],
314         "name": "clearListeners",
315         "owner": "Ext.util.Observable",
316         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
317         "linenr": 425,
318         "return": {
319           "type": "void",
320           "doc": "\n"
321         },
322         "html_filename": "Observable.html"
323       },
324       {
325         "deprecated": null,
326         "alias": null,
327         "protected": false,
328         "tagname": "method",
329         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
330         "shortDoc": "Removes all managed listeners for this object. ...",
331         "static": false,
332         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
333         "private": false,
334         "params": [
335
336         ],
337         "name": "clearManagedListeners",
338         "owner": "Ext.util.Observable",
339         "doc": "<p>Removes all managed listeners for this object.</p>\n",
340         "linenr": 454,
341         "return": {
342           "type": "void",
343           "doc": "\n"
344         },
345         "html_filename": "Observable.html"
346       },
347       {
348         "deprecated": null,
349         "alias": null,
350         "protected": false,
351         "tagname": "method",
352         "href": "Provider2.html#Ext-direct-Provider-method-connect",
353         "shortDoc": "Abstract methods for subclasses to implement. ...",
354         "static": false,
355         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
356         "private": false,
357         "params": [
358
359         ],
360         "name": "connect",
361         "owner": "Ext.direct.Provider",
362         "doc": "<p>Abstract methods for subclasses to implement.</p>\n",
363         "linenr": 86,
364         "return": {
365           "type": "void",
366           "doc": "\n"
367         },
368         "html_filename": "Provider2.html"
369       },
370       {
371         "deprecated": null,
372         "alias": null,
373         "protected": false,
374         "tagname": "method",
375         "href": "Base3.html#Ext-Base-method-create",
376         "shortDoc": "Create a new instance of this Class. ...",
377         "static": true,
378         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
379         "private": false,
380         "params": [
381
382         ],
383         "name": "create",
384         "owner": "Ext.Base",
385         "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",
386         "linenr": 329,
387         "return": {
388           "type": "Object",
389           "doc": "<p>the created instance.</p>\n"
390         },
391         "html_filename": "Base3.html"
392       },
393       {
394         "deprecated": null,
395         "alias": null,
396         "protected": false,
397         "tagname": "method",
398         "href": "Base3.html#Ext-Base-method-createAlias",
399         "shortDoc": "Create aliases for existing prototype methods. ...",
400         "static": true,
401         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
402         "private": false,
403         "params": [
404           {
405             "type": "String/Object",
406             "optional": false,
407             "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",
408             "name": "alias"
409           },
410           {
411             "type": "String/Object",
412             "optional": false,
413             "doc": "<p>The original method name</p>\n",
414             "name": "origin"
415           }
416         ],
417         "name": "createAlias",
418         "owner": "Ext.Base",
419         "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",
420         "linenr": 648,
421         "return": {
422           "type": "void",
423           "doc": "\n"
424         },
425         "html_filename": "Base3.html"
426       },
427       {
428         "deprecated": null,
429         "alias": null,
430         "protected": false,
431         "tagname": "method",
432         "href": "Provider2.html#Ext-direct-Provider-method-disconnect",
433         "shortDoc": "Abstract methods for subclasses to implement. ...",
434         "static": false,
435         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
436         "private": false,
437         "params": [
438
439         ],
440         "name": "disconnect",
441         "owner": "Ext.direct.Provider",
442         "doc": "<p>Abstract methods for subclasses to implement.</p>\n",
443         "linenr": 92,
444         "return": {
445           "type": "void",
446           "doc": "\n"
447         },
448         "html_filename": "Provider2.html"
449       },
450       {
451         "deprecated": null,
452         "alias": null,
453         "protected": false,
454         "tagname": "method",
455         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
456         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
457         "static": false,
458         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
459         "private": false,
460         "params": [
461           {
462             "type": "String/[String]",
463             "optional": false,
464             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
465             "name": "events"
466           }
467         ],
468         "name": "enableBubble",
469         "owner": "Ext.util.Observable",
470         "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",
471         "linenr": 609,
472         "return": {
473           "type": "void",
474           "doc": "\n"
475         },
476         "html_filename": "Observable.html"
477       },
478       {
479         "deprecated": null,
480         "alias": null,
481         "protected": false,
482         "tagname": "method",
483         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
484         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
485         "static": false,
486         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
487         "private": false,
488         "params": [
489           {
490             "type": "String",
491             "optional": false,
492             "doc": "<p>The name of the event to fire.</p>\n",
493             "name": "eventName"
494           },
495           {
496             "type": "Object...",
497             "optional": false,
498             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
499             "name": "args"
500           }
501         ],
502         "name": "fireEvent",
503         "owner": "Ext.util.Observable",
504         "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.direct.Provider-method-addListener\" rel=\"Ext.direct.Provider-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.direct.Provider-method-enableBubble\" rel=\"Ext.direct.Provider-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
505         "linenr": 233,
506         "return": {
507           "type": "Boolean",
508           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
509         },
510         "html_filename": "Observable.html"
511       },
512       {
513         "deprecated": null,
514         "alias": null,
515         "protected": false,
516         "tagname": "method",
517         "href": "Base3.html#Ext-Base-method-getName",
518         "shortDoc": "Get the current class' name in string format. ...",
519         "static": false,
520         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
521         "private": false,
522         "params": [
523
524         ],
525         "name": "getName",
526         "owner": "Ext.Base",
527         "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",
528         "linenr": 631,
529         "return": {
530           "type": "String",
531           "doc": "<p>className</p>\n"
532         },
533         "html_filename": "Base3.html"
534       },
535       {
536         "deprecated": null,
537         "alias": null,
538         "protected": false,
539         "tagname": "method",
540         "href": "Observable.html#Ext-util-Observable-method-hasListener",
541         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
542         "static": false,
543         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
544         "private": false,
545         "params": [
546           {
547             "type": "String",
548             "optional": false,
549             "doc": "<p>The name of the event to check for</p>\n",
550             "name": "eventName"
551           }
552         ],
553         "name": "hasListener",
554         "owner": "Ext.util.Observable",
555         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
556         "linenr": 530,
557         "return": {
558           "type": "Boolean",
559           "doc": "<p>True if the event is being listened for, else false</p>\n"
560         },
561         "html_filename": "Observable.html"
562       },
563       {
564         "deprecated": null,
565         "alias": null,
566         "protected": false,
567         "tagname": "method",
568         "href": "Base3.html#Ext-Base-method-implement",
569         "shortDoc": "Add methods / properties to the prototype of this class. ...",
570         "static": true,
571         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
572         "private": false,
573         "params": [
574           {
575             "type": "Object",
576             "optional": false,
577             "doc": "\n",
578             "name": "members"
579           }
580         ],
581         "name": "implement",
582         "owner": "Ext.Base",
583         "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",
584         "linenr": 415,
585         "return": {
586           "type": "void",
587           "doc": "\n"
588         },
589         "html_filename": "Base3.html"
590       },
591       {
592         "deprecated": null,
593         "alias": null,
594         "protected": true,
595         "tagname": "method",
596         "href": "Base3.html#Ext-Base-method-initConfig",
597         "shortDoc": "Initialize configuration for this class. ...",
598         "static": false,
599         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
600         "private": false,
601         "params": [
602           {
603             "type": "Object",
604             "optional": false,
605             "doc": "\n",
606             "name": "config"
607           }
608         ],
609         "name": "initConfig",
610         "owner": "Ext.Base",
611         "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",
612         "linenr": 63,
613         "return": {
614           "type": "Object",
615           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
616         },
617         "html_filename": "Base3.html"
618       },
619       {
620         "deprecated": null,
621         "alias": null,
622         "protected": false,
623         "tagname": "method",
624         "href": "Provider2.html#Ext-direct-Provider-method-isConnected",
625         "shortDoc": "Returns whether or not the server-side is currently connected. ...",
626         "static": false,
627         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
628         "private": false,
629         "params": [
630
631         ],
632         "name": "isConnected",
633         "owner": "Ext.direct.Provider",
634         "doc": "<p>Returns whether or not the server-side is currently connected.\nAbstract method for subclasses to implement.</p>\n",
635         "linenr": 78,
636         "return": {
637           "type": "void",
638           "doc": "\n"
639         },
640         "html_filename": "Provider2.html"
641       },
642       {
643         "deprecated": null,
644         "alias": {
645           "tagname": "alias",
646           "cls": "Ext.util.Observable",
647           "doc": null,
648           "owner": "addManagedListener"
649         },
650         "protected": false,
651         "tagname": "method",
652         "href": "Observable.html#Ext-util-Observable-method-mon",
653         "shortDoc": "Shorthand for addManagedListener. ...",
654         "static": false,
655         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
656         "private": false,
657         "params": [
658           {
659             "type": "Observable/Element",
660             "optional": false,
661             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
662             "name": "item"
663           },
664           {
665             "type": "Object/String",
666             "optional": false,
667             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
668             "name": "ename"
669           },
670           {
671             "type": "Function",
672             "optional": true,
673             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
674             "name": "fn"
675           },
676           {
677             "type": "Object",
678             "optional": true,
679             "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",
680             "name": "scope"
681           },
682           {
683             "type": "Object",
684             "optional": true,
685             "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",
686             "name": "opt"
687           }
688         ],
689         "name": "mon",
690         "owner": "Ext.util.Observable",
691         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.Provider-method-addManagedListener\" rel=\"Ext.direct.Provider-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",
692         "linenr": 681,
693         "return": {
694           "type": "void",
695           "doc": "\n"
696         },
697         "html_filename": "Observable.html"
698       },
699       {
700         "deprecated": null,
701         "alias": {
702           "tagname": "alias",
703           "cls": "Ext.util.Observable",
704           "doc": null,
705           "owner": "removeManagedListener"
706         },
707         "protected": false,
708         "tagname": "method",
709         "href": "Observable.html#Ext-util-Observable-method-mun",
710         "shortDoc": "Shorthand for removeManagedListener. ...",
711         "static": false,
712         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
713         "private": false,
714         "params": [
715           {
716             "type": "Observable|Element",
717             "optional": false,
718             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
719             "name": "item"
720           },
721           {
722             "type": "Object|String",
723             "optional": false,
724             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
725             "name": "ename"
726           },
727           {
728             "type": "Function",
729             "optional": false,
730             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
731             "name": "fn"
732           },
733           {
734             "type": "Object",
735             "optional": false,
736             "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",
737             "name": "scope"
738           }
739         ],
740         "name": "mun",
741         "owner": "Ext.util.Observable",
742         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.Provider-method-removeManagedListener\" rel=\"Ext.direct.Provider-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.direct.Provider-method-mon\" rel=\"Ext.direct.Provider-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
743         "linenr": 687,
744         "return": {
745           "type": "void",
746           "doc": "\n"
747         },
748         "html_filename": "Observable.html"
749       },
750       {
751         "deprecated": null,
752         "alias": null,
753         "protected": false,
754         "tagname": "method",
755         "href": "Observable.html#Ext-util-Observable-method-observe",
756         "shortDoc": "Sets observability on the passed class constructor. ...",
757         "static": true,
758         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
759         "private": false,
760         "params": [
761           {
762             "type": "Function",
763             "optional": false,
764             "doc": "<p>The class constructor to make observable.</p>\n",
765             "name": "c"
766           },
767           {
768             "type": "Object",
769             "optional": false,
770             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.direct.Provider-method-addListener\" rel=\"Ext.direct.Provider-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
771             "name": "listeners"
772           }
773         ],
774         "name": "observe",
775         "owner": "Ext.util.Observable",
776         "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",
777         "linenr": 69,
778         "return": {
779           "type": "void",
780           "doc": "\n"
781         },
782         "html_filename": "Observable.html"
783       },
784       {
785         "deprecated": null,
786         "alias": {
787           "tagname": "alias",
788           "cls": "Ext.util.Observable",
789           "doc": null,
790           "owner": "addListener"
791         },
792         "protected": false,
793         "tagname": "method",
794         "href": "Observable.html#Ext-util-Observable-method-on",
795         "shortDoc": "Shorthand for addListener. ...",
796         "static": false,
797         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
798         "private": false,
799         "params": [
800           {
801             "type": "String",
802             "optional": false,
803             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
804             "name": "eventName"
805           },
806           {
807             "type": "Function",
808             "optional": false,
809             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.direct.Provider-method-fireEvent\" rel=\"Ext.direct.Provider-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
810             "name": "handler"
811           },
812           {
813             "type": "Object",
814             "optional": true,
815             "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",
816             "name": "scope"
817           },
818           {
819             "type": "Object",
820             "optional": true,
821             "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",
822             "name": "options"
823           }
824         ],
825         "name": "on",
826         "owner": "Ext.util.Observable",
827         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.Provider-method-addListener\" rel=\"Ext.direct.Provider-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
828         "linenr": 669,
829         "return": {
830           "type": "void",
831           "doc": "\n"
832         },
833         "html_filename": "Observable.html"
834       },
835       {
836         "deprecated": null,
837         "alias": null,
838         "protected": false,
839         "tagname": "method",
840         "href": "Base3.html#Ext-Base-method-override",
841         "shortDoc": "Override prototype members of this class. ...",
842         "static": true,
843         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
844         "private": false,
845         "params": [
846           {
847             "type": "Object",
848             "optional": false,
849             "doc": "\n",
850             "name": "members"
851           }
852         ],
853         "name": "override",
854         "owner": "Ext.Base",
855         "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",
856         "linenr": 518,
857         "return": {
858           "type": "Ext.Base",
859           "doc": "<p>this</p>\n"
860         },
861         "html_filename": "Base3.html"
862       },
863       {
864         "deprecated": null,
865         "alias": null,
866         "protected": false,
867         "tagname": "method",
868         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
869         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
870         "static": false,
871         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
872         "private": false,
873         "params": [
874           {
875             "type": "Object",
876             "optional": false,
877             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
878             "name": "origin"
879           },
880           {
881             "type": "[String]",
882             "optional": false,
883             "doc": "<p>Array of event names to relay.</p>\n",
884             "name": "events"
885           },
886           {
887             "type": "Object",
888             "optional": false,
889             "doc": "\n",
890             "name": "prefix"
891           }
892         ],
893         "name": "relayEvents",
894         "owner": "Ext.util.Observable",
895         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
896         "linenr": 573,
897         "return": {
898           "type": "void",
899           "doc": "\n"
900         },
901         "html_filename": "Observable.html"
902       },
903       {
904         "deprecated": null,
905         "alias": null,
906         "protected": false,
907         "tagname": "method",
908         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
909         "shortDoc": "Removes all added captures from the Observable. ...",
910         "static": true,
911         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
912         "private": false,
913         "params": [
914           {
915             "type": "Observable",
916             "optional": false,
917             "doc": "<p>The Observable to release</p>\n",
918             "name": "o"
919           }
920         ],
921         "name": "releaseCapture",
922         "owner": "Ext.util.Observable",
923         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
924         "linenr": 44,
925         "return": {
926           "type": "void",
927           "doc": "\n"
928         },
929         "html_filename": "Observable.html"
930       },
931       {
932         "deprecated": null,
933         "alias": null,
934         "protected": false,
935         "tagname": "method",
936         "href": "Observable.html#Ext-util-Observable-method-removeListener",
937         "shortDoc": "Removes an event handler. ...",
938         "static": false,
939         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
940         "private": false,
941         "params": [
942           {
943             "type": "String",
944             "optional": false,
945             "doc": "<p>The type of event the handler was associated with.</p>\n",
946             "name": "eventName"
947           },
948           {
949             "type": "Function",
950             "optional": false,
951             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.direct.Provider-method-addListener\" rel=\"Ext.direct.Provider-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
952             "name": "handler"
953           },
954           {
955             "type": "Object",
956             "optional": true,
957             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
958             "name": "scope"
959           }
960         ],
961         "name": "removeListener",
962         "owner": "Ext.util.Observable",
963         "doc": "<p>Removes an event handler.</p>\n",
964         "linenr": 392,
965         "return": {
966           "type": "void",
967           "doc": "\n"
968         },
969         "html_filename": "Observable.html"
970       },
971       {
972         "deprecated": null,
973         "alias": null,
974         "protected": false,
975         "tagname": "method",
976         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
977         "shortDoc": "Removes listeners that were added by the mon method. ...",
978         "static": false,
979         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
980         "private": false,
981         "params": [
982           {
983             "type": "Observable|Element",
984             "optional": false,
985             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
986             "name": "item"
987           },
988           {
989             "type": "Object|String",
990             "optional": false,
991             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
992             "name": "ename"
993           },
994           {
995             "type": "Function",
996             "optional": false,
997             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
998             "name": "fn"
999           },
1000           {
1001             "type": "Object",
1002             "optional": false,
1003             "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",
1004             "name": "scope"
1005           }
1006         ],
1007         "name": "removeManagedListener",
1008         "owner": "Ext.util.Observable",
1009         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.direct.Provider-method-mon\" rel=\"Ext.direct.Provider-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1010         "linenr": 197,
1011         "return": {
1012           "type": "void",
1013           "doc": "\n"
1014         },
1015         "html_filename": "Observable.html"
1016       },
1017       {
1018         "deprecated": null,
1019         "alias": null,
1020         "protected": false,
1021         "tagname": "method",
1022         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1023         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1024         "static": false,
1025         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1026         "private": false,
1027         "params": [
1028
1029         ],
1030         "name": "resumeEvents",
1031         "owner": "Ext.util.Observable",
1032         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.direct.Provider-method-suspendEvents\" rel=\"Ext.direct.Provider-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",
1033         "linenr": 554,
1034         "return": {
1035           "type": "void",
1036           "doc": "\n"
1037         },
1038         "html_filename": "Observable.html"
1039       },
1040       {
1041         "deprecated": null,
1042         "alias": null,
1043         "protected": true,
1044         "tagname": "method",
1045         "href": "Base3.html#Ext-Base-method-statics",
1046         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1047         "static": false,
1048         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1049         "private": false,
1050         "params": [
1051
1052         ],
1053         "name": "statics",
1054         "owner": "Ext.Base",
1055         "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",
1056         "linenr": 199,
1057         "return": {
1058           "type": "Class",
1059           "doc": "\n"
1060         },
1061         "html_filename": "Base3.html"
1062       },
1063       {
1064         "deprecated": null,
1065         "alias": null,
1066         "protected": false,
1067         "tagname": "method",
1068         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1069         "shortDoc": "Suspends the firing of all events. ...",
1070         "static": false,
1071         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1072         "private": false,
1073         "params": [
1074           {
1075             "type": "Boolean",
1076             "optional": false,
1077             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.direct.Provider-method-resumeEvents\" rel=\"Ext.direct.Provider-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1078             "name": "queueSuspended"
1079           }
1080         ],
1081         "name": "suspendEvents",
1082         "owner": "Ext.util.Observable",
1083         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.direct.Provider-method-resumeEvents\" rel=\"Ext.direct.Provider-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1084         "linenr": 541,
1085         "return": {
1086           "type": "void",
1087           "doc": "\n"
1088         },
1089         "html_filename": "Observable.html"
1090       },
1091       {
1092         "deprecated": null,
1093         "alias": {
1094           "tagname": "alias",
1095           "cls": "Ext.util.Observable",
1096           "doc": null,
1097           "owner": "removeListener"
1098         },
1099         "protected": false,
1100         "tagname": "method",
1101         "href": "Observable.html#Ext-util-Observable-method-un",
1102         "shortDoc": "Shorthand for removeListener. ...",
1103         "static": false,
1104         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1105         "private": false,
1106         "params": [
1107           {
1108             "type": "String",
1109             "optional": false,
1110             "doc": "<p>The type of event the handler was associated with.</p>\n",
1111             "name": "eventName"
1112           },
1113           {
1114             "type": "Function",
1115             "optional": false,
1116             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.direct.Provider-method-addListener\" rel=\"Ext.direct.Provider-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1117             "name": "handler"
1118           },
1119           {
1120             "type": "Object",
1121             "optional": true,
1122             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1123             "name": "scope"
1124           }
1125         ],
1126         "name": "un",
1127         "owner": "Ext.util.Observable",
1128         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.Provider-method-removeListener\" rel=\"Ext.direct.Provider-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1129         "linenr": 675,
1130         "return": {
1131           "type": "void",
1132           "doc": "\n"
1133         },
1134         "html_filename": "Observable.html"
1135       }
1136     ],
1137     "property": [
1138       {
1139         "type": "Class",
1140         "deprecated": null,
1141         "alias": null,
1142         "protected": true,
1143         "tagname": "property",
1144         "href": "Base3.html#Ext-Base-property-self",
1145         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1146         "static": false,
1147         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1148         "private": false,
1149         "name": "self",
1150         "owner": "Ext.Base",
1151         "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",
1152         "linenr": 18,
1153         "html_filename": "Base3.html"
1154       }
1155     ],
1156     "cssVar": [
1157
1158     ],
1159     "cssMixin": [
1160
1161     ],
1162     "event": [
1163       {
1164         "deprecated": null,
1165         "alias": null,
1166         "protected": false,
1167         "tagname": "event",
1168         "href": "Provider2.html#Ext-direct-Provider-event-connect",
1169         "shortDoc": "Fires when the Provider connects to the server-side ...",
1170         "static": false,
1171         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1172         "private": false,
1173         "params": [
1174           {
1175             "type": "Ext.direct.Provider",
1176             "optional": false,
1177             "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1178             "name": "provider"
1179           },
1180           {
1181             "type": "Object",
1182             "tagname": "param",
1183             "name": "options",
1184             "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"
1185           }
1186         ],
1187         "name": "connect",
1188         "owner": "Ext.direct.Provider",
1189         "doc": "<p>Fires when the Provider connects to the server-side</p>\n",
1190         "linenr": 50,
1191         "html_filename": "Provider2.html"
1192       },
1193       {
1194         "deprecated": null,
1195         "alias": null,
1196         "protected": false,
1197         "tagname": "event",
1198         "href": "Provider2.html#Ext-direct-Provider-event-data",
1199         "shortDoc": "Fires when the Provider receives data from the server-side ...",
1200         "static": false,
1201         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1202         "private": false,
1203         "params": [
1204           {
1205             "type": "Ext.direct.Provider",
1206             "optional": false,
1207             "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1208             "name": "provider"
1209           },
1210           {
1211             "type": "event",
1212             "optional": false,
1213             "doc": "<p>The Ext.Direct.Event type that occurred.</p>\n",
1214             "name": "e"
1215           },
1216           {
1217             "type": "Object",
1218             "tagname": "param",
1219             "name": "options",
1220             "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"
1221           }
1222         ],
1223         "name": "data",
1224         "owner": "Ext.direct.Provider",
1225         "doc": "<p>Fires when the Provider receives data from the server-side</p>\n",
1226         "linenr": 62,
1227         "html_filename": "Provider2.html"
1228       },
1229       {
1230         "deprecated": null,
1231         "alias": null,
1232         "protected": false,
1233         "tagname": "event",
1234         "href": "Provider2.html#Ext-direct-Provider-event-disconnect",
1235         "shortDoc": "Fires when the Provider disconnects from the server-side ...",
1236         "static": false,
1237         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1238         "private": false,
1239         "params": [
1240           {
1241             "type": "Ext.direct.Provider",
1242             "optional": false,
1243             "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1244             "name": "provider"
1245           },
1246           {
1247             "type": "Object",
1248             "tagname": "param",
1249             "name": "options",
1250             "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"
1251           }
1252         ],
1253         "name": "disconnect",
1254         "owner": "Ext.direct.Provider",
1255         "doc": "<p>Fires when the Provider disconnects from the server-side</p>\n",
1256         "linenr": 56,
1257         "html_filename": "Provider2.html"
1258       },
1259       {
1260         "deprecated": null,
1261         "alias": null,
1262         "protected": false,
1263         "tagname": "event",
1264         "href": "Provider2.html#Ext-direct-Provider-event-exception",
1265         "shortDoc": "Fires when the Provider receives an exception from the server-side ...",
1266         "static": false,
1267         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1268         "private": false,
1269         "params": [
1270           {
1271             "type": "Object",
1272             "tagname": "param",
1273             "name": "options",
1274             "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"
1275           }
1276         ],
1277         "name": "exception",
1278         "owner": "Ext.direct.Provider",
1279         "doc": "<p>Fires when the Provider receives an exception from the server-side</p>\n",
1280         "linenr": 69,
1281         "html_filename": "Provider2.html"
1282       }
1283     ]
1284   },
1285   "singleton": false,
1286   "alias": null,
1287   "superclasses": [
1288     "Ext.Base"
1289   ],
1290   "protected": false,
1291   "tagname": "class",
1292   "mixins": [
1293     "Ext.util.Observable"
1294   ],
1295   "href": "Provider2.html#Ext-direct-Provider",
1296   "subclasses": [
1297     "Ext.direct.JsonProvider"
1298   ],
1299   "static": false,
1300   "author": null,
1301   "component": false,
1302   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1303   "private": false,
1304   "alternateClassNames": [
1305
1306   ],
1307   "name": "Ext.direct.Provider",
1308   "doc": "<p>Ext.direct.Provider is an abstract class meant to be extended.</p>\n\n\n\n\n<p>For example ExtJs implements the following subclasses:</p>\n\n\n<pre><code>Provider\n|\n+---<a href=\"#/api/Ext.direct.JsonProvider\" rel=\"Ext.direct.JsonProvider\" class=\"docClass\">JsonProvider</a> \n    |\n    +---<a href=\"#/api/Ext.direct.PollingProvider\" rel=\"Ext.direct.PollingProvider\" class=\"docClass\">PollingProvider</a>   \n    |\n    +---<a href=\"#/api/Ext.direct.RemotingProvider\" rel=\"Ext.direct.RemotingProvider\" class=\"docClass\">RemotingProvider</a>   \n</code></pre>\n\n",
1309   "mixedInto": [
1310
1311   ],
1312   "linenr": 1,
1313   "xtypes": [
1314
1315   ],
1316   "html_filename": "Provider2.html",
1317   "extends": "Ext.Base"
1318 });