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