Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.direct.JsonProvider.js
1 Ext.data.JsonP.Ext_direct_JsonProvider({
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.JsonProvider-method-addListener\" rel=\"Ext.direct.JsonProvider-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.JsonProvider-method-fireEvent\" rel=\"Ext.direct.JsonProvider-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": "JsonProvider.html#Ext-direct-JsonProvider-method-createEvent",
433         "shortDoc": "Create an event from a response object ...",
434         "static": false,
435         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/JsonProvider.js",
436         "private": false,
437         "params": [
438           {
439             "type": "Object",
440             "optional": false,
441             "doc": "<p>The XHR response object</p>\n",
442             "name": "response"
443           }
444         ],
445         "name": "createEvent",
446         "owner": "Ext.direct.JsonProvider",
447         "doc": "<p>Create an event from a response object</p>\n",
448         "linenr": 75,
449         "return": {
450           "type": "Ext.direct.Event",
451           "doc": "<p>The event</p>\n"
452         },
453         "html_filename": "JsonProvider.html"
454       },
455       {
456         "deprecated": null,
457         "alias": null,
458         "protected": false,
459         "tagname": "method",
460         "href": "Provider2.html#Ext-direct-Provider-method-disconnect",
461         "shortDoc": "Abstract methods for subclasses to implement. ...",
462         "static": false,
463         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
464         "private": false,
465         "params": [
466
467         ],
468         "name": "disconnect",
469         "owner": "Ext.direct.Provider",
470         "doc": "<p>Abstract methods for subclasses to implement.</p>\n",
471         "linenr": 92,
472         "return": {
473           "type": "void",
474           "doc": "\n"
475         },
476         "html_filename": "Provider2.html"
477       },
478       {
479         "deprecated": null,
480         "alias": null,
481         "protected": false,
482         "tagname": "method",
483         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
484         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
485         "static": false,
486         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
487         "private": false,
488         "params": [
489           {
490             "type": "String/[String]",
491             "optional": false,
492             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
493             "name": "events"
494           }
495         ],
496         "name": "enableBubble",
497         "owner": "Ext.util.Observable",
498         "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",
499         "linenr": 609,
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-fireEvent",
512         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
513         "static": false,
514         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
515         "private": false,
516         "params": [
517           {
518             "type": "String",
519             "optional": false,
520             "doc": "<p>The name of the event to fire.</p>\n",
521             "name": "eventName"
522           },
523           {
524             "type": "Object...",
525             "optional": false,
526             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
527             "name": "args"
528           }
529         ],
530         "name": "fireEvent",
531         "owner": "Ext.util.Observable",
532         "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.JsonProvider-method-addListener\" rel=\"Ext.direct.JsonProvider-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.JsonProvider-method-enableBubble\" rel=\"Ext.direct.JsonProvider-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
533         "linenr": 233,
534         "return": {
535           "type": "Boolean",
536           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
537         },
538         "html_filename": "Observable.html"
539       },
540       {
541         "deprecated": null,
542         "alias": null,
543         "protected": false,
544         "tagname": "method",
545         "href": "Base3.html#Ext-Base-method-getName",
546         "shortDoc": "Get the current class' name in string format. ...",
547         "static": false,
548         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
549         "private": false,
550         "params": [
551
552         ],
553         "name": "getName",
554         "owner": "Ext.Base",
555         "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",
556         "linenr": 631,
557         "return": {
558           "type": "String",
559           "doc": "<p>className</p>\n"
560         },
561         "html_filename": "Base3.html"
562       },
563       {
564         "deprecated": null,
565         "alias": null,
566         "protected": false,
567         "tagname": "method",
568         "href": "Observable.html#Ext-util-Observable-method-hasListener",
569         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
570         "static": false,
571         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
572         "private": false,
573         "params": [
574           {
575             "type": "String",
576             "optional": false,
577             "doc": "<p>The name of the event to check for</p>\n",
578             "name": "eventName"
579           }
580         ],
581         "name": "hasListener",
582         "owner": "Ext.util.Observable",
583         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
584         "linenr": 530,
585         "return": {
586           "type": "Boolean",
587           "doc": "<p>True if the event is being listened for, else false</p>\n"
588         },
589         "html_filename": "Observable.html"
590       },
591       {
592         "deprecated": null,
593         "alias": null,
594         "protected": false,
595         "tagname": "method",
596         "href": "Base3.html#Ext-Base-method-implement",
597         "shortDoc": "Add methods / properties to the prototype of this class. ...",
598         "static": true,
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": "members"
607           }
608         ],
609         "name": "implement",
610         "owner": "Ext.Base",
611         "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",
612         "linenr": 415,
613         "return": {
614           "type": "void",
615           "doc": "\n"
616         },
617         "html_filename": "Base3.html"
618       },
619       {
620         "deprecated": null,
621         "alias": null,
622         "protected": true,
623         "tagname": "method",
624         "href": "Base3.html#Ext-Base-method-initConfig",
625         "shortDoc": "Initialize configuration for this class. ...",
626         "static": false,
627         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
628         "private": false,
629         "params": [
630           {
631             "type": "Object",
632             "optional": false,
633             "doc": "\n",
634             "name": "config"
635           }
636         ],
637         "name": "initConfig",
638         "owner": "Ext.Base",
639         "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",
640         "linenr": 63,
641         "return": {
642           "type": "Object",
643           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
644         },
645         "html_filename": "Base3.html"
646       },
647       {
648         "deprecated": null,
649         "alias": null,
650         "protected": false,
651         "tagname": "method",
652         "href": "Provider2.html#Ext-direct-Provider-method-isConnected",
653         "shortDoc": "Returns whether or not the server-side is currently connected. ...",
654         "static": false,
655         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
656         "private": false,
657         "params": [
658
659         ],
660         "name": "isConnected",
661         "owner": "Ext.direct.Provider",
662         "doc": "<p>Returns whether or not the server-side is currently connected.\nAbstract method for subclasses to implement.</p>\n",
663         "linenr": 78,
664         "return": {
665           "type": "void",
666           "doc": "\n"
667         },
668         "html_filename": "Provider2.html"
669       },
670       {
671         "deprecated": null,
672         "alias": {
673           "tagname": "alias",
674           "cls": "Ext.util.Observable",
675           "doc": null,
676           "owner": "addManagedListener"
677         },
678         "protected": false,
679         "tagname": "method",
680         "href": "Observable.html#Ext-util-Observable-method-mon",
681         "shortDoc": "Shorthand for addManagedListener. ...",
682         "static": false,
683         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
684         "private": false,
685         "params": [
686           {
687             "type": "Observable/Element",
688             "optional": false,
689             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
690             "name": "item"
691           },
692           {
693             "type": "Object/String",
694             "optional": false,
695             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
696             "name": "ename"
697           },
698           {
699             "type": "Function",
700             "optional": true,
701             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
702             "name": "fn"
703           },
704           {
705             "type": "Object",
706             "optional": true,
707             "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",
708             "name": "scope"
709           },
710           {
711             "type": "Object",
712             "optional": true,
713             "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",
714             "name": "opt"
715           }
716         ],
717         "name": "mon",
718         "owner": "Ext.util.Observable",
719         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.JsonProvider-method-addManagedListener\" rel=\"Ext.direct.JsonProvider-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",
720         "linenr": 681,
721         "return": {
722           "type": "void",
723           "doc": "\n"
724         },
725         "html_filename": "Observable.html"
726       },
727       {
728         "deprecated": null,
729         "alias": {
730           "tagname": "alias",
731           "cls": "Ext.util.Observable",
732           "doc": null,
733           "owner": "removeManagedListener"
734         },
735         "protected": false,
736         "tagname": "method",
737         "href": "Observable.html#Ext-util-Observable-method-mun",
738         "shortDoc": "Shorthand for removeManagedListener. ...",
739         "static": false,
740         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
741         "private": false,
742         "params": [
743           {
744             "type": "Observable|Element",
745             "optional": false,
746             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
747             "name": "item"
748           },
749           {
750             "type": "Object|String",
751             "optional": false,
752             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
753             "name": "ename"
754           },
755           {
756             "type": "Function",
757             "optional": false,
758             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
759             "name": "fn"
760           },
761           {
762             "type": "Object",
763             "optional": false,
764             "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",
765             "name": "scope"
766           }
767         ],
768         "name": "mun",
769         "owner": "Ext.util.Observable",
770         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.JsonProvider-method-removeManagedListener\" rel=\"Ext.direct.JsonProvider-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.direct.JsonProvider-method-mon\" rel=\"Ext.direct.JsonProvider-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
771         "linenr": 687,
772         "return": {
773           "type": "void",
774           "doc": "\n"
775         },
776         "html_filename": "Observable.html"
777       },
778       {
779         "deprecated": null,
780         "alias": null,
781         "protected": false,
782         "tagname": "method",
783         "href": "Observable.html#Ext-util-Observable-method-observe",
784         "shortDoc": "Sets observability on the passed class constructor. ...",
785         "static": true,
786         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
787         "private": false,
788         "params": [
789           {
790             "type": "Function",
791             "optional": false,
792             "doc": "<p>The class constructor to make observable.</p>\n",
793             "name": "c"
794           },
795           {
796             "type": "Object",
797             "optional": false,
798             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.direct.JsonProvider-method-addListener\" rel=\"Ext.direct.JsonProvider-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
799             "name": "listeners"
800           }
801         ],
802         "name": "observe",
803         "owner": "Ext.util.Observable",
804         "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",
805         "linenr": 69,
806         "return": {
807           "type": "void",
808           "doc": "\n"
809         },
810         "html_filename": "Observable.html"
811       },
812       {
813         "deprecated": null,
814         "alias": {
815           "tagname": "alias",
816           "cls": "Ext.util.Observable",
817           "doc": null,
818           "owner": "addListener"
819         },
820         "protected": false,
821         "tagname": "method",
822         "href": "Observable.html#Ext-util-Observable-method-on",
823         "shortDoc": "Shorthand for addListener. ...",
824         "static": false,
825         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
826         "private": false,
827         "params": [
828           {
829             "type": "String",
830             "optional": false,
831             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
832             "name": "eventName"
833           },
834           {
835             "type": "Function",
836             "optional": false,
837             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.direct.JsonProvider-method-fireEvent\" rel=\"Ext.direct.JsonProvider-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
838             "name": "handler"
839           },
840           {
841             "type": "Object",
842             "optional": true,
843             "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",
844             "name": "scope"
845           },
846           {
847             "type": "Object",
848             "optional": true,
849             "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",
850             "name": "options"
851           }
852         ],
853         "name": "on",
854         "owner": "Ext.util.Observable",
855         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.JsonProvider-method-addListener\" rel=\"Ext.direct.JsonProvider-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
856         "linenr": 669,
857         "return": {
858           "type": "void",
859           "doc": "\n"
860         },
861         "html_filename": "Observable.html"
862       },
863       {
864         "deprecated": null,
865         "alias": null,
866         "protected": false,
867         "tagname": "method",
868         "href": "Base3.html#Ext-Base-method-override",
869         "shortDoc": "Override prototype members of this class. ...",
870         "static": true,
871         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
872         "private": false,
873         "params": [
874           {
875             "type": "Object",
876             "optional": false,
877             "doc": "\n",
878             "name": "members"
879           }
880         ],
881         "name": "override",
882         "owner": "Ext.Base",
883         "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",
884         "linenr": 518,
885         "return": {
886           "type": "Ext.Base",
887           "doc": "<p>this</p>\n"
888         },
889         "html_filename": "Base3.html"
890       },
891       {
892         "deprecated": null,
893         "alias": null,
894         "protected": false,
895         "tagname": "method",
896         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
897         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
898         "static": false,
899         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
900         "private": false,
901         "params": [
902           {
903             "type": "Object",
904             "optional": false,
905             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
906             "name": "origin"
907           },
908           {
909             "type": "[String]",
910             "optional": false,
911             "doc": "<p>Array of event names to relay.</p>\n",
912             "name": "events"
913           },
914           {
915             "type": "Object",
916             "optional": false,
917             "doc": "\n",
918             "name": "prefix"
919           }
920         ],
921         "name": "relayEvents",
922         "owner": "Ext.util.Observable",
923         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
924         "linenr": 573,
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-releaseCapture",
937         "shortDoc": "Removes all added captures from the Observable. ...",
938         "static": true,
939         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
940         "private": false,
941         "params": [
942           {
943             "type": "Observable",
944             "optional": false,
945             "doc": "<p>The Observable to release</p>\n",
946             "name": "o"
947           }
948         ],
949         "name": "releaseCapture",
950         "owner": "Ext.util.Observable",
951         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
952         "linenr": 44,
953         "return": {
954           "type": "void",
955           "doc": "\n"
956         },
957         "html_filename": "Observable.html"
958       },
959       {
960         "deprecated": null,
961         "alias": null,
962         "protected": false,
963         "tagname": "method",
964         "href": "Observable.html#Ext-util-Observable-method-removeListener",
965         "shortDoc": "Removes an event handler. ...",
966         "static": false,
967         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
968         "private": false,
969         "params": [
970           {
971             "type": "String",
972             "optional": false,
973             "doc": "<p>The type of event the handler was associated with.</p>\n",
974             "name": "eventName"
975           },
976           {
977             "type": "Function",
978             "optional": false,
979             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.direct.JsonProvider-method-addListener\" rel=\"Ext.direct.JsonProvider-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
980             "name": "handler"
981           },
982           {
983             "type": "Object",
984             "optional": true,
985             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
986             "name": "scope"
987           }
988         ],
989         "name": "removeListener",
990         "owner": "Ext.util.Observable",
991         "doc": "<p>Removes an event handler.</p>\n",
992         "linenr": 392,
993         "return": {
994           "type": "void",
995           "doc": "\n"
996         },
997         "html_filename": "Observable.html"
998       },
999       {
1000         "deprecated": null,
1001         "alias": null,
1002         "protected": false,
1003         "tagname": "method",
1004         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1005         "shortDoc": "Removes listeners that were added by the mon method. ...",
1006         "static": false,
1007         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1008         "private": false,
1009         "params": [
1010           {
1011             "type": "Observable|Element",
1012             "optional": false,
1013             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1014             "name": "item"
1015           },
1016           {
1017             "type": "Object|String",
1018             "optional": false,
1019             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1020             "name": "ename"
1021           },
1022           {
1023             "type": "Function",
1024             "optional": false,
1025             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1026             "name": "fn"
1027           },
1028           {
1029             "type": "Object",
1030             "optional": false,
1031             "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",
1032             "name": "scope"
1033           }
1034         ],
1035         "name": "removeManagedListener",
1036         "owner": "Ext.util.Observable",
1037         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.direct.JsonProvider-method-mon\" rel=\"Ext.direct.JsonProvider-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1038         "linenr": 197,
1039         "return": {
1040           "type": "void",
1041           "doc": "\n"
1042         },
1043         "html_filename": "Observable.html"
1044       },
1045       {
1046         "deprecated": null,
1047         "alias": null,
1048         "protected": false,
1049         "tagname": "method",
1050         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1051         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1052         "static": false,
1053         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1054         "private": false,
1055         "params": [
1056
1057         ],
1058         "name": "resumeEvents",
1059         "owner": "Ext.util.Observable",
1060         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.direct.JsonProvider-method-suspendEvents\" rel=\"Ext.direct.JsonProvider-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",
1061         "linenr": 554,
1062         "return": {
1063           "type": "void",
1064           "doc": "\n"
1065         },
1066         "html_filename": "Observable.html"
1067       },
1068       {
1069         "deprecated": null,
1070         "alias": null,
1071         "protected": true,
1072         "tagname": "method",
1073         "href": "Base3.html#Ext-Base-method-statics",
1074         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1075         "static": false,
1076         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1077         "private": false,
1078         "params": [
1079
1080         ],
1081         "name": "statics",
1082         "owner": "Ext.Base",
1083         "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",
1084         "linenr": 199,
1085         "return": {
1086           "type": "Class",
1087           "doc": "\n"
1088         },
1089         "html_filename": "Base3.html"
1090       },
1091       {
1092         "deprecated": null,
1093         "alias": null,
1094         "protected": false,
1095         "tagname": "method",
1096         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1097         "shortDoc": "Suspends the firing of all events. ...",
1098         "static": false,
1099         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1100         "private": false,
1101         "params": [
1102           {
1103             "type": "Boolean",
1104             "optional": false,
1105             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.direct.JsonProvider-method-resumeEvents\" rel=\"Ext.direct.JsonProvider-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1106             "name": "queueSuspended"
1107           }
1108         ],
1109         "name": "suspendEvents",
1110         "owner": "Ext.util.Observable",
1111         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.direct.JsonProvider-method-resumeEvents\" rel=\"Ext.direct.JsonProvider-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1112         "linenr": 541,
1113         "return": {
1114           "type": "void",
1115           "doc": "\n"
1116         },
1117         "html_filename": "Observable.html"
1118       },
1119       {
1120         "deprecated": null,
1121         "alias": {
1122           "tagname": "alias",
1123           "cls": "Ext.util.Observable",
1124           "doc": null,
1125           "owner": "removeListener"
1126         },
1127         "protected": false,
1128         "tagname": "method",
1129         "href": "Observable.html#Ext-util-Observable-method-un",
1130         "shortDoc": "Shorthand for removeListener. ...",
1131         "static": false,
1132         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1133         "private": false,
1134         "params": [
1135           {
1136             "type": "String",
1137             "optional": false,
1138             "doc": "<p>The type of event the handler was associated with.</p>\n",
1139             "name": "eventName"
1140           },
1141           {
1142             "type": "Function",
1143             "optional": false,
1144             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.direct.JsonProvider-method-addListener\" rel=\"Ext.direct.JsonProvider-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1145             "name": "handler"
1146           },
1147           {
1148             "type": "Object",
1149             "optional": true,
1150             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1151             "name": "scope"
1152           }
1153         ],
1154         "name": "un",
1155         "owner": "Ext.util.Observable",
1156         "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.JsonProvider-method-removeListener\" rel=\"Ext.direct.JsonProvider-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1157         "linenr": 675,
1158         "return": {
1159           "type": "void",
1160           "doc": "\n"
1161         },
1162         "html_filename": "Observable.html"
1163       }
1164     ],
1165     "property": [
1166       {
1167         "type": "Class",
1168         "deprecated": null,
1169         "alias": null,
1170         "protected": true,
1171         "tagname": "property",
1172         "href": "Base3.html#Ext-Base-property-self",
1173         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1174         "static": false,
1175         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1176         "private": false,
1177         "name": "self",
1178         "owner": "Ext.Base",
1179         "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",
1180         "linenr": 18,
1181         "html_filename": "Base3.html"
1182       }
1183     ],
1184     "cssVar": [
1185
1186     ],
1187     "cssMixin": [
1188
1189     ],
1190     "event": [
1191       {
1192         "deprecated": null,
1193         "alias": null,
1194         "protected": false,
1195         "tagname": "event",
1196         "href": "Provider2.html#Ext-direct-Provider-event-connect",
1197         "shortDoc": "Fires when the Provider connects to the server-side ...",
1198         "static": false,
1199         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1200         "private": false,
1201         "params": [
1202           {
1203             "type": "Ext.direct.Provider",
1204             "optional": false,
1205             "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1206             "name": "provider"
1207           },
1208           {
1209             "type": "Object",
1210             "tagname": "param",
1211             "name": "options",
1212             "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"
1213           }
1214         ],
1215         "name": "connect",
1216         "owner": "Ext.direct.Provider",
1217         "doc": "<p>Fires when the Provider connects to the server-side</p>\n",
1218         "linenr": 50,
1219         "html_filename": "Provider2.html"
1220       },
1221       {
1222         "deprecated": null,
1223         "alias": null,
1224         "protected": false,
1225         "tagname": "event",
1226         "href": "Provider2.html#Ext-direct-Provider-event-data",
1227         "shortDoc": "Fires when the Provider receives data from the server-side ...",
1228         "static": false,
1229         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1230         "private": false,
1231         "params": [
1232           {
1233             "type": "Ext.direct.Provider",
1234             "optional": false,
1235             "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1236             "name": "provider"
1237           },
1238           {
1239             "type": "event",
1240             "optional": false,
1241             "doc": "<p>The Ext.Direct.Event type that occurred.</p>\n",
1242             "name": "e"
1243           },
1244           {
1245             "type": "Object",
1246             "tagname": "param",
1247             "name": "options",
1248             "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"
1249           }
1250         ],
1251         "name": "data",
1252         "owner": "Ext.direct.Provider",
1253         "doc": "<p>Fires when the Provider receives data from the server-side</p>\n",
1254         "linenr": 62,
1255         "html_filename": "Provider2.html"
1256       },
1257       {
1258         "deprecated": null,
1259         "alias": null,
1260         "protected": false,
1261         "tagname": "event",
1262         "href": "Provider2.html#Ext-direct-Provider-event-disconnect",
1263         "shortDoc": "Fires when the Provider disconnects from the server-side ...",
1264         "static": false,
1265         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1266         "private": false,
1267         "params": [
1268           {
1269             "type": "Ext.direct.Provider",
1270             "optional": false,
1271             "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1272             "name": "provider"
1273           },
1274           {
1275             "type": "Object",
1276             "tagname": "param",
1277             "name": "options",
1278             "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"
1279           }
1280         ],
1281         "name": "disconnect",
1282         "owner": "Ext.direct.Provider",
1283         "doc": "<p>Fires when the Provider disconnects from the server-side</p>\n",
1284         "linenr": 56,
1285         "html_filename": "Provider2.html"
1286       },
1287       {
1288         "deprecated": null,
1289         "alias": null,
1290         "protected": false,
1291         "tagname": "event",
1292         "href": "Provider2.html#Ext-direct-Provider-event-exception",
1293         "shortDoc": "Fires when the Provider receives an exception from the server-side ...",
1294         "static": false,
1295         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1296         "private": false,
1297         "params": [
1298           {
1299             "type": "Object",
1300             "tagname": "param",
1301             "name": "options",
1302             "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"
1303           }
1304         ],
1305         "name": "exception",
1306         "owner": "Ext.direct.Provider",
1307         "doc": "<p>Fires when the Provider receives an exception from the server-side</p>\n",
1308         "linenr": 69,
1309         "html_filename": "Provider2.html"
1310       }
1311     ]
1312   },
1313   "singleton": false,
1314   "alias": null,
1315   "superclasses": [
1316     "Ext.Base",
1317     "Ext.direct.Provider"
1318   ],
1319   "protected": false,
1320   "tagname": "class",
1321   "mixins": [
1322
1323   ],
1324   "href": "JsonProvider.html#Ext-direct-JsonProvider",
1325   "subclasses": [
1326     "Ext.direct.RemotingProvider",
1327     "Ext.direct.PollingProvider"
1328   ],
1329   "static": false,
1330   "author": null,
1331   "component": false,
1332   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/JsonProvider.js",
1333   "private": false,
1334   "alternateClassNames": [
1335
1336   ],
1337   "name": "Ext.direct.JsonProvider",
1338   "doc": "<p>A base provider for communicating using JSON. This is an abstract class\nand should not be instanced directly.</p>\n",
1339   "mixedInto": [
1340
1341   ],
1342   "linenr": 1,
1343   "xtypes": [
1344
1345   ],
1346   "html_filename": "JsonProvider.html",
1347   "extends": "Ext.direct.Provider"
1348 });