Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.data.proxy.Direct.js
1 Ext.data.JsonP.Ext_data_proxy_Direct({
2   "tagname": "class",
3   "name": "Ext.data.proxy.Direct",
4   "doc": "<p>This class is used to send requests to the server using <a href=\"#/api/Ext.direct\" rel=\"Ext.direct\" class=\"docClass\">Ext.direct</a>. When a request is made,\nthe transport mechanism is handed off to the appropriate <a href=\"#/api/Ext.direct.RemotingProvider\" rel=\"Ext.direct.RemotingProvider\" class=\"docClass\">Provider</a>\nto complete the call.</p>\n\n<h2>Specifying the function</h2>\n\n<p>This proxy expects a Direct remoting method to be passed in order to be able to complete requests.\nThis can be done by specifying the <a href=\"#/api/Ext.data.proxy.Direct-cfg-directFn\" rel=\"Ext.data.proxy.Direct-cfg-directFn\" class=\"docClass\">directFn</a> configuration. This will use the same direct\nmethod for all requests. Alternatively, you can provide an <a href=\"#/api/Ext.data.proxy.Direct-cfg-api\" rel=\"Ext.data.proxy.Direct-cfg-api\" class=\"docClass\">api</a> configuration. This\nallows you to specify a different remoting method for each CRUD action.</p>\n\n<h2>Paramaters</h2>\n\n<p>This proxy provides options to help configure which parameters will be sent to the server.\nBy specifying the <a href=\"#/api/Ext.data.proxy.Direct-cfg-paramsAsHash\" rel=\"Ext.data.proxy.Direct-cfg-paramsAsHash\" class=\"docClass\">paramsAsHash</a> option, it will send an object literal containing each\nof the passed parameters. The <a href=\"#/api/Ext.data.proxy.Direct-cfg-paramOrder\" rel=\"Ext.data.proxy.Direct-cfg-paramOrder\" class=\"docClass\">paramOrder</a> option can be used to specify the order in which\nthe remoting method parameters are passed.</p>\n\n<h2>Example Usage</h2>\n\n<pre><code>Ext.define('User', {\n    extend: 'Ext.data.Model',\n    fields: ['firstName', 'lastName'],\n    proxy: {\n        type: 'direct',\n        directFn: MyApp.getUsers,\n        paramOrder: 'id' // Tells the proxy to pass the id as the first parameter to the remoting method.\n    }\n});\nUser.load(1);\n</code></pre>\n",
5   "extends": "Ext.data.proxy.Server",
6   "mixins": [
7
8   ],
9   "alternateClassNames": [
10     "Ext.data.DirectProxy"
11   ],
12   "xtype": null,
13   "author": null,
14   "docauthor": null,
15   "singleton": false,
16   "private": false,
17   "cfg": [
18     {
19       "tagname": "cfg",
20       "name": "api",
21       "member": "Ext.data.proxy.Direct",
22       "type": "Object",
23       "doc": "<p>The same as <a href=\"#/api/Ext.data.proxy.Server-cfg-api\" rel=\"Ext.data.proxy.Server-cfg-api\" class=\"docClass\">Ext.data.proxy.Server.api</a>, however instead of providing urls, you should provide a direct\nfunction call.</p>\n",
24       "private": false,
25       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Direct.js",
26       "linenr": 74,
27       "html_filename": "Direct.html",
28       "href": "Direct.html#Ext-data-proxy-Direct-cfg-api"
29     },
30     {
31       "tagname": "cfg",
32       "name": "batchActions",
33       "member": "Ext.data.proxy.Proxy",
34       "type": "Boolean",
35       "doc": "<p>True to batch actions of a particular type when synchronizing the store.\nDefaults to <tt>true</tt>.</p>\n",
36       "private": false,
37       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
38       "linenr": 64,
39       "html_filename": "Proxy2.html",
40       "href": "Proxy2.html#Ext-data-proxy-Proxy-cfg-batchActions"
41     },
42     {
43       "tagname": "cfg",
44       "name": "batchOrder",
45       "member": "Ext.data.proxy.Proxy",
46       "type": "String",
47       "doc": "<p>Comma-separated ordering 'create', 'update' and 'destroy' actions when batching. Override this\nto set a different order for the batched CRUD actions to be executed in. Defaults to 'create,update,destroy'</p>\n",
48       "private": false,
49       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
50       "linenr": 57,
51       "html_filename": "Proxy2.html",
52       "href": "Proxy2.html#Ext-data-proxy-Proxy-cfg-batchOrder",
53       "shortDoc": "Comma-separated ordering 'create', 'update' and 'destroy' actions when batching. Override this\nto set a different ord..."
54     },
55     {
56       "tagname": "cfg",
57       "name": "cacheString",
58       "member": "Ext.data.proxy.Server",
59       "type": "String",
60       "doc": "<p>The name of the cache param added to the url when using noCache (defaults to \"_dc\")</p>\n",
61       "private": false,
62       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
63       "linenr": 87,
64       "html_filename": "Server.html",
65       "href": "Server.html#Ext-data-proxy-Server-cfg-cacheString"
66     },
67     {
68       "tagname": "cfg",
69       "name": "directFn",
70       "member": "Ext.data.proxy.Direct",
71       "type": "Function",
72       "doc": "<p>Function to call when executing a request.  directFn is a simple alternative to defining the api configuration-parameter\nfor Store's which will not implement a full CRUD api.</p>\n",
73       "private": false,
74       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Direct.js",
75       "linenr": 67,
76       "html_filename": "Direct.html",
77       "href": "Direct.html#Ext-data-proxy-Direct-cfg-directFn",
78       "shortDoc": "Function to call when executing a request.  directFn is a simple alternative to defining the api configuration-parame..."
79     },
80     {
81       "tagname": "cfg",
82       "name": "directionParam",
83       "member": "Ext.data.proxy.Server",
84       "type": "String",
85       "doc": "<p>The name of the direction parameter to send in a request. <strong>This is only used when simpleSortMode is set to true.</strong>\nDefaults to 'dir'.</p>\n",
86       "private": false,
87       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
88       "linenr": 69,
89       "html_filename": "Server.html",
90       "href": "Server.html#Ext-data-proxy-Server-cfg-directionParam",
91       "shortDoc": "The name of the direction parameter to send in a request. This is only used when simpleSortMode is set to true.\nDefau..."
92     },
93     {
94       "tagname": "cfg",
95       "name": "extraParams",
96       "member": "Ext.data.proxy.Direct",
97       "type": "Object",
98       "doc": "<p>Extra parameters that will be included on every read request. Individual requests with params\nof the same name will override these params when they are in conflict.</p>\n",
99       "private": false,
100       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Direct.js",
101       "linenr": 79,
102       "html_filename": "Direct.html",
103       "href": "Direct.html#Ext-data-proxy-Direct-cfg-extraParams",
104       "shortDoc": "Extra parameters that will be included on every read request. Individual requests with params\nof the same name will o..."
105     },
106     {
107       "tagname": "cfg",
108       "name": "filterParam",
109       "member": "Ext.data.proxy.Server",
110       "type": "String",
111       "doc": "<p>The name of the 'filter' parameter to send in a request. Defaults to 'filter'. Set\nthis to undefined if you don't want to send a filter parameter</p>\n",
112       "private": false,
113       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
114       "linenr": 63,
115       "html_filename": "Server.html",
116       "href": "Server.html#Ext-data-proxy-Server-cfg-filterParam",
117       "shortDoc": "The name of the 'filter' parameter to send in a request. Defaults to 'filter'. Set\nthis to undefined if you don't wan..."
118     },
119     {
120       "tagname": "cfg",
121       "name": "groupParam",
122       "member": "Ext.data.proxy.Server",
123       "type": "String",
124       "doc": "<p>The name of the 'group' parameter to send in a request. Defaults to 'group'. Set this\nto undefined if you don't want to send a group parameter</p>\n",
125       "private": false,
126       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
127       "linenr": 51,
128       "html_filename": "Server.html",
129       "href": "Server.html#Ext-data-proxy-Server-cfg-groupParam",
130       "shortDoc": "The name of the 'group' parameter to send in a request. Defaults to 'group'. Set this\nto undefined if you don't want ..."
131     },
132     {
133       "tagname": "cfg",
134       "name": "limitParam",
135       "member": "Ext.data.proxy.Server",
136       "type": "String",
137       "doc": "<p>The name of the 'limit' parameter to send in a request. Defaults to 'limit'. Set this\nto undefined if you don't want to send a limit parameter</p>\n",
138       "private": false,
139       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
140       "linenr": 45,
141       "html_filename": "Server.html",
142       "href": "Server.html#Ext-data-proxy-Server-cfg-limitParam",
143       "shortDoc": "The name of the 'limit' parameter to send in a request. Defaults to 'limit'. Set this\nto undefined if you don't want ..."
144     },
145     {
146       "tagname": "cfg",
147       "name": "listeners",
148       "member": "Ext.util.Observable",
149       "type": "Object",
150       "doc": "<p>(optional) <p>A config object containing one or more event handlers to be added to this\nobject during initialization.  This should be a valid listeners config object as specified in the\n<a href=\"#/api/Ext.data.proxy.Direct-method-addListener\" rel=\"Ext.data.proxy.Direct-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple handlers at once.</p></p>\n\n<br><p><b><u>DOM events from ExtJs <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></u></b></p>\n\n\n<br><p>While <i>some</i> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n<p>is usually only 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\n<b><code><a href=\"#/api/Ext.view.View--click\" rel=\"Ext.view.View--click\" class=\"docClass\">click</a></code></b> event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the <code>element</code> option to\nidentify the Component property to add a DOM 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\n\n<p></p></p>\n",
151       "private": false,
152       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
153       "linenr": 103,
154       "html_filename": "Observable.html",
155       "href": "Observable.html#Ext-util-Observable-cfg-listeners",
156       "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization.  T..."
157     },
158     {
159       "tagname": "cfg",
160       "name": "model",
161       "member": "Ext.data.proxy.Proxy",
162       "type": "String/Ext.data.Model",
163       "doc": "<p>The name of the Model to tie to this Proxy. Can be either the string name of\nthe Model, or a reference to the Model constructor. Required.</p>\n",
164       "private": false,
165       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
166       "linenr": 82,
167       "html_filename": "Proxy2.html",
168       "href": "Proxy2.html#Ext-data-proxy-Proxy-cfg-model",
169       "shortDoc": "The name of the Model to tie to this Proxy. Can be either the string name of\nthe Model, or a reference to the Model c..."
170     },
171     {
172       "tagname": "cfg",
173       "name": "noCache",
174       "member": "Ext.data.proxy.Server",
175       "type": "Boolean",
176       "doc": "<p>(optional) Defaults to true. Disable caching by adding a unique parameter\nname to the request.</p>\n",
177       "private": false,
178       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
179       "linenr": 81,
180       "html_filename": "Server.html",
181       "href": "Server.html#Ext-data-proxy-Server-cfg-noCache"
182     },
183     {
184       "tagname": "cfg",
185       "name": "pageParam",
186       "member": "Ext.data.proxy.Server",
187       "type": "String",
188       "doc": "<p>The name of the 'page' parameter to send in a request. Defaults to 'page'. Set this to\nundefined if you don't want to send a page parameter</p>\n",
189       "private": false,
190       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
191       "linenr": 33,
192       "html_filename": "Server.html",
193       "href": "Server.html#Ext-data-proxy-Server-cfg-pageParam",
194       "shortDoc": "The name of the 'page' parameter to send in a request. Defaults to 'page'. Set this to\nundefined if you don't want to..."
195     },
196     {
197       "tagname": "cfg",
198       "name": "paramOrder",
199       "member": "Ext.data.proxy.Direct",
200       "type": "Array/String",
201       "doc": "<p>Defaults to <tt>undefined</tt>. A list of params to be executed\nserver side.  Specify the params in the order in which they must be executed on the server-side\nas either (1) an Array of String values, or (2) a String of params delimited by either whitespace,\ncomma, or pipe. For example,\nany of the following would be acceptable:</p>\n\n<pre><code>paramOrder: ['param1','param2','param3']\nparamOrder: 'param1 param2 param3'\nparamOrder: 'param1,param2,param3'\nparamOrder: 'param1|param2|param'\n     </code></pre>\n\n",
202       "private": false,
203       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Direct.js",
204       "linenr": 46,
205       "html_filename": "Direct.html",
206       "href": "Direct.html#Ext-data-proxy-Direct-cfg-paramOrder",
207       "shortDoc": "Defaults to undefined. A list of params to be executed\nserver side.  Specify the params in the order in which they mu..."
208     },
209     {
210       "tagname": "cfg",
211       "name": "paramsAsHash",
212       "member": "Ext.data.proxy.Direct",
213       "type": "Boolean",
214       "doc": "<p>Send parameters as a collection of named arguments (defaults to <tt>true</tt>). Providing a\n<tt><a href=\"#/api/Ext.data.proxy.Direct-cfg-paramOrder\" rel=\"Ext.data.proxy.Direct-cfg-paramOrder\" class=\"docClass\">paramOrder</a></tt> nullifies this configuration.</p>\n",
215       "private": false,
216       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Direct.js",
217       "linenr": 60,
218       "html_filename": "Direct.html",
219       "href": "Direct.html#Ext-data-proxy-Direct-cfg-paramsAsHash",
220       "shortDoc": "Send parameters as a collection of named arguments (defaults to true). Providing a\nparamOrder nullifies this configur..."
221     },
222     {
223       "tagname": "cfg",
224       "name": "reader",
225       "member": "Ext.data.proxy.Server",
226       "type": "Object/String/Ext.data.reader.Reader",
227       "doc": "<p>The <a href=\"#/api/Ext.data.reader.Reader\" rel=\"Ext.data.reader.Reader\" class=\"docClass\">Ext.data.reader.Reader</a> to use to decode the server's response. This can\neither be a Reader instance, a config object or just a valid Reader type name (e.g. 'json', 'xml').</p>\n",
228       "private": false,
229       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
230       "linenr": 23,
231       "html_filename": "Server.html",
232       "href": "Server.html#Ext-data-proxy-Server-cfg-reader",
233       "shortDoc": "The Ext.data.reader.Reader to use to decode the server's response. This can\neither be a Reader instance, a config obj..."
234     },
235     {
236       "tagname": "cfg",
237       "name": "simpleSortMode",
238       "member": "Ext.data.proxy.Server",
239       "type": "Boolean",
240       "doc": "<p>Enabling simpleSortMode in conjunction with remoteSort will only send one sort property and a direction when a remote sort is requested.\nThe directionParam and sortParam will be sent with the property name and either 'ASC' or 'DESC'</p>\n",
241       "private": false,
242       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
243       "linenr": 75,
244       "html_filename": "Server.html",
245       "href": "Server.html#Ext-data-proxy-Server-cfg-simpleSortMode",
246       "shortDoc": "Enabling simpleSortMode in conjunction with remoteSort will only send one sort property and a direction when a remote..."
247     },
248     {
249       "tagname": "cfg",
250       "name": "sortParam",
251       "member": "Ext.data.proxy.Server",
252       "type": "String",
253       "doc": "<p>The name of the 'sort' parameter to send in a request. Defaults to 'sort'. Set this\nto undefined if you don't want to send a sort parameter</p>\n",
254       "private": false,
255       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
256       "linenr": 57,
257       "html_filename": "Server.html",
258       "href": "Server.html#Ext-data-proxy-Server-cfg-sortParam",
259       "shortDoc": "The name of the 'sort' parameter to send in a request. Defaults to 'sort'. Set this\nto undefined if you don't want to..."
260     },
261     {
262       "tagname": "cfg",
263       "name": "startParam",
264       "member": "Ext.data.proxy.Server",
265       "type": "String",
266       "doc": "<p>The name of the 'start' parameter to send in a request. Defaults to 'start'. Set this\nto undefined if you don't want to send a start parameter</p>\n",
267       "private": false,
268       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
269       "linenr": 39,
270       "html_filename": "Server.html",
271       "href": "Server.html#Ext-data-proxy-Server-cfg-startParam",
272       "shortDoc": "The name of the 'start' parameter to send in a request. Defaults to 'start'. Set this\nto undefined if you don't want ..."
273     },
274     {
275       "tagname": "cfg",
276       "name": "timeout",
277       "member": "Ext.data.proxy.Server",
278       "type": "Number",
279       "doc": "<p>(optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.</p>\n",
280       "private": false,
281       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
282       "linenr": 92,
283       "html_filename": "Server.html",
284       "href": "Server.html#Ext-data-proxy-Server-cfg-timeout"
285     },
286     {
287       "tagname": "cfg",
288       "name": "url",
289       "member": "Ext.data.proxy.Server",
290       "type": "String",
291       "doc": "<p>The URL from which to request the data object.</p>\n",
292       "private": false,
293       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
294       "linenr": 19,
295       "html_filename": "Server.html",
296       "href": "Server.html#Ext-data-proxy-Server-cfg-url"
297     },
298     {
299       "tagname": "cfg",
300       "name": "writer",
301       "member": "Ext.data.proxy.Server",
302       "type": "Object/String/Ext.data.writer.Writer",
303       "doc": "<p>The <a href=\"#/api/Ext.data.writer.Writer\" rel=\"Ext.data.writer.Writer\" class=\"docClass\">Ext.data.writer.Writer</a> to use to encode any request sent to the server.\nThis can either be a Writer instance, a config object or just a valid Writer type name (e.g. 'json', 'xml').</p>\n",
304       "private": false,
305       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
306       "linenr": 28,
307       "html_filename": "Server.html",
308       "href": "Server.html#Ext-data-proxy-Server-cfg-writer",
309       "shortDoc": "The Ext.data.writer.Writer to use to encode any request sent to the server.\nThis can either be a Writer instance, a c..."
310     }
311   ],
312   "method": [
313     {
314       "tagname": "method",
315       "name": "Direct",
316       "member": "Ext.data.proxy.Proxy",
317       "doc": "<p>Creates the Proxy</p>\n",
318       "params": [
319         {
320           "type": "Object",
321           "name": "config",
322           "doc": "<p>Optional config object</p>\n",
323           "optional": false
324         }
325       ],
326       "return": {
327         "type": "void",
328         "doc": "\n"
329       },
330       "private": false,
331       "static": false,
332       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
333       "linenr": 1,
334       "html_filename": "Proxy2.html",
335       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-constructor",
336       "shortDoc": "<p>Creates the Proxy</p>\n"
337     },
338     {
339       "tagname": "method",
340       "name": "addEvents",
341       "member": "Ext.util.Observable",
342       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
343       "params": [
344         {
345           "type": "Object/String",
346           "name": "o",
347           "doc": "<p>Either an object with event names as properties with a value of <code>true</code>\nor the first event name string if multiple event names are being passed as separate parameters.</p>\n",
348           "optional": false
349         },
350         {
351           "type": "String",
352           "name": "",
353           "doc": "<p>[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n\n",
354           "optional": false
355         }
356       ],
357       "return": {
358         "type": "void",
359         "doc": "\n"
360       },
361       "private": false,
362       "static": false,
363       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
364       "linenr": 452,
365       "html_filename": "Observable.html",
366       "href": "Observable.html#Ext-util-Observable-method-addEvents",
367       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
368     },
369     {
370       "tagname": "method",
371       "name": "addListener",
372       "member": "Ext.util.Observable",
373       "doc": "<p>Appends an event handler to this object.</p>\n",
374       "params": [
375         {
376           "type": "String",
377           "name": "eventName",
378           "doc": "<p>The name of the event to listen for. May also be an object who's property names are event names. See</p>\n",
379           "optional": false
380         },
381         {
382           "type": "Function",
383           "name": "handler",
384           "doc": "<p>The method the event invokes.</p>\n",
385           "optional": false
386         },
387         {
388           "type": "Object",
389           "name": "scope",
390           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
391           "optional": true
392         },
393         {
394           "type": "Object",
395           "name": "options",
396           "doc": "<p>(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:<ul>\n<li><b>scope</b> : Object<div class=\"sub-desc\">The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></div></li>\n<li><b>delay</b> : Number<div class=\"sub-desc\">The number of milliseconds to delay the invocation of the handler after the event fires.</div></li>\n<li><b>single</b> : Boolean<div class=\"sub-desc\">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>\n<li><b>buffer</b> : Number<div class=\"sub-desc\">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\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is <em>not</em> invoked, but the new handler is scheduled in its place.</div></li>\n<li><b>target</b> : Observable<div class=\"sub-desc\">Only call the handler if the event was fired on the target Observable, <i>not</i>\nif the event was bubbled up from a child Observable.</div></li>\n<li><b>element</b> : String<div class=\"sub-desc\"><b>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</b>\nThe name of a Component property 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 <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which\nwill exist only after the Component is rendered. For example, to add a click listener to a Panel's body:\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></p>\n\n\n<p>When added in this way, the options available are the options applicable to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a></p>\n\n\n<p></div></li>\n</ul><br></p>\n\n<p>\n<b>Combining Options</b><br>\nUsing the options argument, it is possible to combine different types of listeners:<br>\n<br>\nA delayed, one-time listener.\n<pre><code>myPanel.on('hide', this.handleClick, this, {\nsingle: true,\ndelay: 100\n});</code></pre>\n<p>\n<b>Attaching multiple handlers in 1 call</b><br>\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\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<p>\n\n",
397           "optional": true
398         }
399       ],
400       "return": {
401         "type": "void",
402         "doc": "\n"
403       },
404       "private": false,
405       "static": false,
406       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
407       "linenr": 271,
408       "html_filename": "Observable.html",
409       "href": "Observable.html#Ext-util-Observable-method-addListener",
410       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
411     },
412     {
413       "tagname": "method",
414       "name": "addManagedListener",
415       "member": "Ext.util.Observable",
416       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
417       "params": [
418         {
419           "type": "Observable/Element",
420           "name": "item",
421           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
422           "optional": false
423         },
424         {
425           "type": "Object/String",
426           "name": "ename",
427           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
428           "optional": false
429         },
430         {
431           "type": "Function",
432           "name": "fn",
433           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
434           "optional": false
435         },
436         {
437           "type": "Object",
438           "name": "scope",
439           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
440           "optional": false
441         },
442         {
443           "type": "Object",
444           "name": "opt",
445           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
446           "optional": false
447         }
448       ],
449       "return": {
450         "type": "void",
451         "doc": "\n"
452       },
453       "private": false,
454       "static": false,
455       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
456       "linenr": 155,
457       "html_filename": "Observable.html",
458       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
459       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
460     },
461     {
462       "tagname": "method",
463       "name": "afterRequest",
464       "member": "Ext.data.proxy.Server",
465       "doc": "<p>Optional callback function which can be used to clean up after a request has been completed.</p>\n",
466       "params": [
467         {
468           "type": "Ext.data.Request",
469           "name": "request",
470           "doc": "<p>The Request object</p>\n",
471           "optional": false
472         },
473         {
474           "type": "Boolean",
475           "name": "success",
476           "doc": "<p>True if the request was successful</p>\n",
477           "optional": false
478         }
479       ],
480       "return": {
481         "type": "void",
482         "doc": "\n"
483       },
484       "private": false,
485       "static": false,
486       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
487       "linenr": 450,
488       "html_filename": "Server.html",
489       "href": "Server.html#Ext-data-proxy-Server-method-afterRequest",
490       "shortDoc": "<p>Optional callback function which can be used to clean up after a request has been completed.</p>\n"
491     },
492     {
493       "tagname": "method",
494       "name": "batch",
495       "member": "Ext.data.proxy.Proxy",
496       "doc": "<p>Performs a batch of <a href=\"#/api/Ext.data.Operation\" rel=\"Ext.data.Operation\" class=\"docClass\">Operations</a>, in the order specified by <a href=\"#/api/Ext.data.proxy.Direct-cfg-batchOrder\" rel=\"Ext.data.proxy.Direct-cfg-batchOrder\" class=\"docClass\">batchOrder</a>. Used internally by\n<a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a>'s <a href=\"#/api/Ext.data.Store-method-sync\" rel=\"Ext.data.Store-method-sync\" class=\"docClass\">sync</a> method. Example usage:</p>\n\n<pre><code>myProxy.batch({\n    create : [myModel1, myModel2],\n    update : [myModel3],\n    destroy: [myModel4, myModel5]\n});\n</code></pre>\n\n\n<p>Where the myModel* above are <a href=\"#/api/Ext.data.Model\" rel=\"Ext.data.Model\" class=\"docClass\">Model</a> instances - in this case 1 and 2 are new instances and have not been\nsaved before, 3 has been saved previously but needs to be updated, and 4 and 5 have already been saved but should now be destroyed.</p>\n",
497       "params": [
498         {
499           "type": "Object",
500           "name": "operations",
501           "doc": "<p>Object containing the Model instances to act upon, keyed by action name</p>\n",
502           "optional": false
503         },
504         {
505           "type": "Object",
506           "name": "listeners",
507           "doc": "<p>Optional listeners object passed straight through to the Batch - see <a href=\"#/api/Ext.data.Batch\" rel=\"Ext.data.Batch\" class=\"docClass\">Ext.data.Batch</a></p>\n",
508           "optional": false
509         }
510       ],
511       "return": {
512         "type": "Ext.data.Batch",
513         "doc": "<p>The newly created <a href=\"#/api/Ext.data.Batch\" rel=\"Ext.data.Batch\" class=\"docClass\">Ext.data.Batch</a> object</p>\n"
514       },
515       "private": false,
516       "static": false,
517       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
518       "linenr": 241,
519       "html_filename": "Proxy2.html",
520       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-batch",
521       "shortDoc": "Performs a batch of Operations, in the order specified by batchOrder. Used internally by\nExt.data.Store's sync method..."
522     },
523     {
524       "tagname": "method",
525       "name": "buildRequest",
526       "member": "Ext.data.proxy.Server",
527       "doc": "<p>Creates and returns an <a href=\"#/api/Ext.data.Request\" rel=\"Ext.data.Request\" class=\"docClass\">Ext.data.Request</a> object based on the options passed by the <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Store</a>\nthat this Proxy is attached to.</p>\n",
528       "params": [
529         {
530           "type": "Ext.data.Operation",
531           "name": "operation",
532           "doc": "<p>The <a href=\"#/api/Ext.data.Operation\" rel=\"Ext.data.Operation\" class=\"docClass\">Operation</a> object to execute</p>\n",
533           "optional": false
534         }
535       ],
536       "return": {
537         "type": "Ext.data.Request",
538         "doc": "<p>The request object</p>\n"
539       },
540       "private": false,
541       "static": false,
542       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
543       "linenr": 172,
544       "html_filename": "Server.html",
545       "href": "Server.html#Ext-data-proxy-Server-method-buildRequest",
546       "shortDoc": "<p>Creates and returns an <a href=\"#/api/Ext.data.Request\" rel=\"Ext.data.Request\" class=\"docClass\">Ext.data.Request</a> object based on the options passed by the <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Store</a>\nthat this Proxy is attached to.</p>\n"
547     },
548     {
549       "tagname": "method",
550       "name": "buildUrl",
551       "member": "Ext.data.proxy.Server",
552       "doc": "<p>Generates a url based on a given <a href=\"#/api/Ext.data.Request\" rel=\"Ext.data.Request\" class=\"docClass\">Ext.data.Request</a> object. By default, ServerProxy's buildUrl will\nadd the cache-buster param to the end of the url. Subclasses may need to perform additional modifications\nto the url.</p>\n",
553       "params": [
554         {
555           "type": "Ext.data.Request",
556           "name": "request",
557           "doc": "<p>The request object</p>\n",
558           "optional": false
559         }
560       ],
561       "return": {
562         "type": "String",
563         "doc": "<p>The url</p>\n"
564       },
565       "private": false,
566       "static": false,
567       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
568       "linenr": 399,
569       "html_filename": "Server.html",
570       "href": "Server.html#Ext-data-proxy-Server-method-buildUrl",
571       "shortDoc": "Generates a url based on a given Ext.data.Request object. By default, ServerProxy's buildUrl will\nadd the cache-buste..."
572     },
573     {
574       "tagname": "method",
575       "name": "capture",
576       "member": "Ext.util.Observable",
577       "doc": "<p>Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
578       "params": [
579         {
580           "type": "Observable",
581           "name": "o",
582           "doc": "<p>The Observable to capture events from.</p>\n",
583           "optional": false
584         },
585         {
586           "type": "Function",
587           "name": "fn",
588           "doc": "<p>The function to call when an event is fired.</p>\n",
589           "optional": false
590         },
591         {
592           "type": "Object",
593           "name": "scope",
594           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
595           "optional": true
596         }
597       ],
598       "return": {
599         "type": "void",
600         "doc": "\n"
601       },
602       "private": false,
603       "static": true,
604       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
605       "linenr": 55,
606       "html_filename": "Observable.html",
607       "href": "Observable.html#Ext-util-Observable-method-capture",
608       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
609     },
610     {
611       "tagname": "method",
612       "name": "clearListeners",
613       "member": "Ext.util.Observable",
614       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
615       "params": [
616
617       ],
618       "return": {
619         "type": "void",
620         "doc": "\n"
621       },
622       "private": false,
623       "static": false,
624       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
625       "linenr": 383,
626       "html_filename": "Observable.html",
627       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
628       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
629     },
630     {
631       "tagname": "method",
632       "name": "clearManagedListeners",
633       "member": "Ext.util.Observable",
634       "doc": "<p>Removes all managed listeners for this object.</p>\n",
635       "params": [
636
637       ],
638       "return": {
639         "type": "void",
640         "doc": "\n"
641       },
642       "private": false,
643       "static": false,
644       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
645       "linenr": 412,
646       "html_filename": "Observable.html",
647       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
648       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
649     },
650     {
651       "tagname": "method",
652       "name": "create",
653       "member": "Ext.data.proxy.Proxy",
654       "doc": "<p>Performs the given create operation.</p>\n",
655       "params": [
656         {
657           "type": "Ext.data.Operation",
658           "name": "operation",
659           "doc": "<p>The Operation to perform</p>\n",
660           "optional": false
661         },
662         {
663           "type": "Function",
664           "name": "callback",
665           "doc": "<p>Callback function to be called when the Operation has completed (whether successful or not)</p>\n",
666           "optional": false
667         },
668         {
669           "type": "Object",
670           "name": "scope",
671           "doc": "<p>Scope to execute the callback function in</p>\n",
672           "optional": false
673         }
674       ],
675       "return": {
676         "type": "void",
677         "doc": "\n"
678       },
679       "private": false,
680       "static": false,
681       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
682       "linenr": 205,
683       "html_filename": "Proxy2.html",
684       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-create",
685       "shortDoc": "<p>Performs the given create operation.</p>\n"
686     },
687     {
688       "tagname": "method",
689       "name": "destroy",
690       "member": "Ext.data.proxy.Proxy",
691       "doc": "<p>Performs the given destroy operation.</p>\n",
692       "params": [
693         {
694           "type": "Ext.data.Operation",
695           "name": "operation",
696           "doc": "<p>The Operation to perform</p>\n",
697           "optional": false
698         },
699         {
700           "type": "Function",
701           "name": "callback",
702           "doc": "<p>Callback function to be called when the Operation has completed (whether successful or not)</p>\n",
703           "optional": false
704         },
705         {
706           "type": "Object",
707           "name": "scope",
708           "doc": "<p>Scope to execute the callback function in</p>\n",
709           "optional": false
710         }
711       ],
712       "return": {
713         "type": "void",
714         "doc": "\n"
715       },
716       "private": false,
717       "static": false,
718       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
719       "linenr": 232,
720       "html_filename": "Proxy2.html",
721       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-destroy",
722       "shortDoc": "<p>Performs the given destroy operation.</p>\n"
723     },
724     {
725       "tagname": "method",
726       "name": "doRequest",
727       "member": "Ext.data.proxy.Server",
728       "doc": "<p>In ServerProxy subclasses, the <a href=\"#/api/Ext.data.proxy.Direct-method-create\" rel=\"Ext.data.proxy.Direct-method-create\" class=\"docClass\">create</a>, <a href=\"#/api/Ext.data.proxy.Direct-method-read\" rel=\"Ext.data.proxy.Direct-method-read\" class=\"docClass\">read</a>, <a href=\"#/api/Ext.data.proxy.Direct-method-update\" rel=\"Ext.data.proxy.Direct-method-update\" class=\"docClass\">update</a> and <a href=\"#/api/Ext.data.proxy.Direct-method-destroy\" rel=\"Ext.data.proxy.Direct-method-destroy\" class=\"docClass\">destroy</a> methods all pass\nthrough to doRequest. Each ServerProxy subclass must implement the doRequest method - see <a href=\"#/api/Ext.data.proxy.JsonP\" rel=\"Ext.data.proxy.JsonP\" class=\"docClass\">Ext.data.proxy.JsonP</a>\nand <a href=\"#/api/Ext.data.proxy.Ajax\" rel=\"Ext.data.proxy.Ajax\" class=\"docClass\">Ext.data.proxy.Ajax</a> for examples. This method carries the same signature as each of the methods that delegate to it.</p>\n",
729       "params": [
730         {
731           "type": "Ext.data.Operation",
732           "name": "operation",
733           "doc": "<p>The <a href=\"#/api/Ext.data.Operation\" rel=\"Ext.data.Operation\" class=\"docClass\">Ext.data.Operation</a> object</p>\n",
734           "optional": false
735         },
736         {
737           "type": "Function",
738           "name": "callback",
739           "doc": "<p>The callback function to call when the Operation has completed</p>\n",
740           "optional": false
741         },
742         {
743           "type": "Object",
744           "name": "scope",
745           "doc": "<p>The scope in which to execute the callback</p>\n",
746           "optional": false
747         }
748       ],
749       "return": {
750         "type": "void",
751         "doc": "\n"
752       },
753       "private": false,
754       "static": false,
755       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
756       "linenr": 436,
757       "html_filename": "Server.html",
758       "href": "Server.html#Ext-data-proxy-Server-method-doRequest",
759       "shortDoc": "In ServerProxy subclasses, the create, read, update and destroy methods all pass\nthrough to doRequest. Each ServerPro..."
760     },
761     {
762       "tagname": "method",
763       "name": "enableBubble",
764       "member": "Ext.util.Observable",
765       "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling\n<code>this.getBubbleTarget()</code> if present. There is no implementation in the Observable base class.</p>\n\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers. See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default\nimplementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.</p>\n\n\n<p>Example:</p>\n\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field&#39;s initComponent to enable the change event to bubble\ninitComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n    this.enableBubble('change');\n}),\n\n//  We know that we want Field&#39;s events to bubble directly to the FormPanel.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\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\n",
766       "params": [
767         {
768           "type": "String/Array",
769           "name": "events",
770           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
771           "optional": false
772         }
773       ],
774       "return": {
775         "type": "void",
776         "doc": "\n"
777       },
778       "private": false,
779       "static": false,
780       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
781       "linenr": 554,
782       "html_filename": "Observable.html",
783       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
784       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
785     },
786     {
787       "tagname": "method",
788       "name": "encodeFilters",
789       "member": "Ext.data.proxy.Server",
790       "doc": "<p>Encodes the array of <a href=\"#/api/Ext.util.Filter\" rel=\"Ext.util.Filter\" class=\"docClass\">Ext.util.Filter</a> objects into a string to be sent in the request url. By default,\nthis simply JSON-encodes the filter data</p>\n",
791       "params": [
792         {
793           "type": "Array",
794           "name": "sorters",
795           "doc": "<p>The array of <a href=\"#/api/Ext.util.Filter\" rel=\"Ext.util.Filter\" class=\"docClass\">Filter</a> objects</p>\n",
796           "optional": false
797         }
798       ],
799       "return": {
800         "type": "String",
801         "doc": "<p>The encoded filters</p>\n"
802       },
803       "private": false,
804       "static": false,
805       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
806       "linenr": 319,
807       "html_filename": "Server.html",
808       "href": "Server.html#Ext-data-proxy-Server-method-encodeFilters",
809       "shortDoc": "Encodes the array of Ext.util.Filter objects into a string to be sent in the request url. By default,\nthis simply JSO..."
810     },
811     {
812       "tagname": "method",
813       "name": "encodeSorters",
814       "member": "Ext.data.proxy.Server",
815       "doc": "<p>Encodes the array of <a href=\"#/api/Ext.util.Sorter\" rel=\"Ext.util.Sorter\" class=\"docClass\">Ext.util.Sorter</a> objects into a string to be sent in the request url. By default,\nthis simply JSON-encodes the sorter data</p>\n",
816       "params": [
817         {
818           "type": "Array",
819           "name": "sorters",
820           "doc": "<p>The array of <a href=\"#/api/Ext.util.Sorter\" rel=\"Ext.util.Sorter\" class=\"docClass\">Sorter</a> objects</p>\n",
821           "optional": false
822         }
823       ],
824       "return": {
825         "type": "String",
826         "doc": "<p>The encoded sorters</p>\n"
827       },
828       "private": false,
829       "static": false,
830       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
831       "linenr": 298,
832       "html_filename": "Server.html",
833       "href": "Server.html#Ext-data-proxy-Server-method-encodeSorters",
834       "shortDoc": "Encodes the array of Ext.util.Sorter objects into a string to be sent in the request url. By default,\nthis simply JSO..."
835     },
836     {
837       "tagname": "method",
838       "name": "fireEvent",
839       "member": "Ext.util.Observable",
840       "doc": "<p>Fires the specified event with the passed parameters (minus the event name).</p>\n\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>)\nby calling <a href=\"#/api/Ext.data.proxy.Direct-method-enableBubble\" rel=\"Ext.data.proxy.Direct-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
841       "params": [
842         {
843           "type": "String",
844           "name": "eventName",
845           "doc": "<p>The name of the event to fire.</p>\n",
846           "optional": false
847         },
848         {
849           "type": "Object...",
850           "name": "args",
851           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
852           "optional": false
853         }
854       ],
855       "return": {
856         "type": "Boolean",
857         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
858       },
859       "private": false,
860       "static": false,
861       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
862       "linenr": 232,
863       "html_filename": "Observable.html",
864       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
865       "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..."
866     },
867     {
868       "tagname": "method",
869       "name": "getModel",
870       "member": "Ext.data.proxy.Proxy",
871       "doc": "<p>Returns the model attached to this Proxy</p>\n",
872       "params": [
873
874       ],
875       "return": {
876         "type": "Ext.data.Model",
877         "doc": "<p>The model</p>\n"
878       },
879       "private": false,
880       "static": false,
881       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
882       "linenr": 123,
883       "html_filename": "Proxy2.html",
884       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-getModel",
885       "shortDoc": "<p>Returns the model attached to this Proxy</p>\n"
886     },
887     {
888       "tagname": "method",
889       "name": "getReader",
890       "member": "Ext.data.proxy.Proxy",
891       "doc": "<p>Returns the reader currently attached to this proxy instance</p>\n",
892       "params": [
893
894       ],
895       "return": {
896         "type": "Ext.data.reader.Reader",
897         "doc": "<p>The Reader instance</p>\n"
898       },
899       "private": false,
900       "static": false,
901       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
902       "linenr": 162,
903       "html_filename": "Proxy2.html",
904       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-getReader",
905       "shortDoc": "<p>Returns the reader currently attached to this proxy instance</p>\n"
906     },
907     {
908       "tagname": "method",
909       "name": "getWriter",
910       "member": "Ext.data.proxy.Proxy",
911       "doc": "<p>Returns the writer currently attached to this proxy instance</p>\n",
912       "params": [
913
914       ],
915       "return": {
916         "type": "Ext.data.writer.Writer",
917         "doc": "<p>The Writer instance</p>\n"
918       },
919       "private": false,
920       "static": false,
921       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
922       "linenr": 197,
923       "html_filename": "Proxy2.html",
924       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-getWriter",
925       "shortDoc": "<p>Returns the writer currently attached to this proxy instance</p>\n"
926     },
927     {
928       "tagname": "method",
929       "name": "hasListener",
930       "member": "Ext.util.Observable",
931       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
932       "params": [
933         {
934           "type": "String",
935           "name": "eventName",
936           "doc": "<p>The name of the event to check for</p>\n",
937           "optional": false
938         }
939       ],
940       "return": {
941         "type": "Boolean",
942         "doc": "<p>True if the event is being listened for, else false</p>\n"
943       },
944       "private": false,
945       "static": false,
946       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
947       "linenr": 480,
948       "html_filename": "Observable.html",
949       "href": "Observable.html#Ext-util-Observable-method-hasListener",
950       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
951     },
952     {
953       "tagname": "method",
954       "name": "observe",
955       "member": "Ext.util.Observable",
956       "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",
957       "params": [
958         {
959           "type": "Function",
960           "name": "c",
961           "doc": "<p>The class constructor to make observable.</p>\n",
962           "optional": false
963         },
964         {
965           "type": "Object",
966           "name": "listeners",
967           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.data.proxy.Direct-method-addListener\" rel=\"Ext.data.proxy.Direct-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
968           "optional": false
969         }
970       ],
971       "return": {
972         "type": "void",
973         "doc": "\n"
974       },
975       "private": false,
976       "static": true,
977       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
978       "linenr": 69,
979       "html_filename": "Observable.html",
980       "href": "Observable.html#Ext-util-Observable-method-observe",
981       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
982     },
983     {
984       "tagname": "method",
985       "name": "on",
986       "member": "Ext.util.Observable",
987       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.data.proxy.Direct-method-addListener\" rel=\"Ext.data.proxy.Direct-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
988       "params": [
989         {
990           "type": "String",
991           "name": "eventName",
992           "doc": "<p>The type of event to listen for</p>\n",
993           "optional": false
994         },
995         {
996           "type": "Function",
997           "name": "handler",
998           "doc": "<p>The method the event invokes</p>\n",
999           "optional": false
1000         },
1001         {
1002           "type": "Object",
1003           "name": "scope",
1004           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
1005           "optional": true
1006         },
1007         {
1008           "type": "Object",
1009           "name": "options",
1010           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
1011           "optional": true
1012         }
1013       ],
1014       "return": {
1015         "type": "void",
1016         "doc": "\n"
1017       },
1018       "private": false,
1019       "static": false,
1020       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1021       "linenr": 616,
1022       "html_filename": "Observable.html",
1023       "href": "Observable.html#Ext-util-Observable-method-on",
1024       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.data.proxy.Direct-method-addListener\" rel=\"Ext.data.proxy.Direct-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
1025     },
1026     {
1027       "tagname": "method",
1028       "name": "processResponse",
1029       "member": "Ext.data.proxy.Server",
1030       "doc": "\n",
1031       "params": [
1032         {
1033           "type": "Object",
1034           "name": "success",
1035           "doc": "\n",
1036           "optional": false
1037         },
1038         {
1039           "type": "Object",
1040           "name": "operation",
1041           "doc": "\n",
1042           "optional": false
1043         },
1044         {
1045           "type": "Object",
1046           "name": "request",
1047           "doc": "\n",
1048           "optional": false
1049         },
1050         {
1051           "type": "Object",
1052           "name": "response",
1053           "doc": "\n",
1054           "optional": false
1055         },
1056         {
1057           "type": "Object",
1058           "name": "callback",
1059           "doc": "\n",
1060           "optional": false
1061         },
1062         {
1063           "type": "Object",
1064           "name": "scope",
1065           "doc": "\n",
1066           "optional": false
1067         }
1068       ],
1069       "return": {
1070         "type": "void",
1071         "doc": "\n"
1072       },
1073       "private": false,
1074       "static": false,
1075       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
1076       "linenr": 208,
1077       "html_filename": "Server.html",
1078       "href": "Server.html#Ext-data-proxy-Server-method-processResponse",
1079       "shortDoc": "\n"
1080     },
1081     {
1082       "tagname": "method",
1083       "name": "read",
1084       "member": "Ext.data.proxy.Proxy",
1085       "doc": "<p>Performs the given read operation.</p>\n",
1086       "params": [
1087         {
1088           "type": "Ext.data.Operation",
1089           "name": "operation",
1090           "doc": "<p>The Operation to perform</p>\n",
1091           "optional": false
1092         },
1093         {
1094           "type": "Function",
1095           "name": "callback",
1096           "doc": "<p>Callback function to be called when the Operation has completed (whether successful or not)</p>\n",
1097           "optional": false
1098         },
1099         {
1100           "type": "Object",
1101           "name": "scope",
1102           "doc": "<p>Scope to execute the callback function in</p>\n",
1103           "optional": false
1104         }
1105       ],
1106       "return": {
1107         "type": "void",
1108         "doc": "\n"
1109       },
1110       "private": false,
1111       "static": false,
1112       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
1113       "linenr": 214,
1114       "html_filename": "Proxy2.html",
1115       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-read",
1116       "shortDoc": "<p>Performs the given read operation.</p>\n"
1117     },
1118     {
1119       "tagname": "method",
1120       "name": "relayEvents",
1121       "member": "Ext.util.Observable",
1122       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
1123       "params": [
1124         {
1125           "type": "Object",
1126           "name": "origin",
1127           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1128           "optional": false
1129         },
1130         {
1131           "type": "Array",
1132           "name": "events",
1133           "doc": "<p>Array of event names to relay.</p>\n",
1134           "optional": false
1135         },
1136         {
1137           "type": "Object",
1138           "name": "prefix",
1139           "doc": "\n",
1140           "optional": false
1141         }
1142       ],
1143       "return": {
1144         "type": "void",
1145         "doc": "\n"
1146       },
1147       "private": false,
1148       "static": false,
1149       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1150       "linenr": 520,
1151       "html_filename": "Observable.html",
1152       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1153       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
1154     },
1155     {
1156       "tagname": "method",
1157       "name": "releaseCapture",
1158       "member": "Ext.util.Observable",
1159       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
1160       "params": [
1161         {
1162           "type": "Observable",
1163           "name": "o",
1164           "doc": "<p>The Observable to release</p>\n",
1165           "optional": false
1166         }
1167       ],
1168       "return": {
1169         "type": "void",
1170         "doc": "\n"
1171       },
1172       "private": false,
1173       "static": true,
1174       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1175       "linenr": 46,
1176       "html_filename": "Observable.html",
1177       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1178       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
1179     },
1180     {
1181       "tagname": "method",
1182       "name": "removeListener",
1183       "member": "Ext.util.Observable",
1184       "doc": "<p>Removes an event handler.</p>\n",
1185       "params": [
1186         {
1187           "type": "String",
1188           "name": "eventName",
1189           "doc": "<p>The type of event the handler was associated with.</p>\n",
1190           "optional": false
1191         },
1192         {
1193           "type": "Function",
1194           "name": "handler",
1195           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.data.proxy.Direct-method-addListener\" rel=\"Ext.data.proxy.Direct-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1196           "optional": false
1197         },
1198         {
1199           "type": "Object",
1200           "name": "scope",
1201           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1202           "optional": true
1203         }
1204       ],
1205       "return": {
1206         "type": "void",
1207         "doc": "\n"
1208       },
1209       "private": false,
1210       "static": false,
1211       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1212       "linenr": 352,
1213       "html_filename": "Observable.html",
1214       "href": "Observable.html#Ext-util-Observable-method-removeListener",
1215       "shortDoc": "<p>Removes an event handler.</p>\n"
1216     },
1217     {
1218       "tagname": "method",
1219       "name": "removeManagedListener",
1220       "member": "Ext.util.Observable",
1221       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.data.proxy.Direct--mon\" rel=\"Ext.data.proxy.Direct--mon\" class=\"docClass\">mon</a> method.</p>\n",
1222       "params": [
1223         {
1224           "type": "Observable|Element",
1225           "name": "item",
1226           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1227           "optional": false
1228         },
1229         {
1230           "type": "Object|String",
1231           "name": "ename",
1232           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1233           "optional": false
1234         },
1235         {
1236           "type": "Function",
1237           "name": "fn",
1238           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
1239           "optional": false
1240         },
1241         {
1242           "type": "Object",
1243           "name": "scope",
1244           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
1245           "optional": false
1246         }
1247       ],
1248       "return": {
1249         "type": "void",
1250         "doc": "\n"
1251       },
1252       "private": false,
1253       "static": false,
1254       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1255       "linenr": 196,
1256       "html_filename": "Observable.html",
1257       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1258       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.data.proxy.Direct--mon\" rel=\"Ext.data.proxy.Direct--mon\" class=\"docClass\">mon</a> method.</p>\n"
1259     },
1260     {
1261       "tagname": "method",
1262       "name": "resumeEvents",
1263       "member": "Ext.util.Observable",
1264       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.data.proxy.Direct-method-suspendEvents\" rel=\"Ext.data.proxy.Direct-method-suspendEvents\" class=\"docClass\">suspendEvents</a>)\nIf events were suspended using the <code><b>queueSuspended</b></code> parameter, then all\nevents fired during event suspension will be sent to any listeners now.</p>\n",
1265       "params": [
1266
1267       ],
1268       "return": {
1269         "type": "void",
1270         "doc": "\n"
1271       },
1272       "private": false,
1273       "static": false,
1274       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1275       "linenr": 502,
1276       "html_filename": "Observable.html",
1277       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1278       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
1279     },
1280     {
1281       "tagname": "method",
1282       "name": "setModel",
1283       "member": "Ext.data.proxy.Proxy",
1284       "doc": "<p>Sets the model associated with this proxy. This will only usually be called by a Store</p>\n",
1285       "params": [
1286         {
1287           "type": "String|Ext.data.Model",
1288           "name": "model",
1289           "doc": "<p>The new model. Can be either the model name string,\nor a reference to the model's constructor</p>\n",
1290           "optional": false
1291         },
1292         {
1293           "type": "Boolean",
1294           "name": "setOnStore",
1295           "doc": "<p>Sets the new model on the associated Store, if one is present</p>\n",
1296           "optional": false
1297         }
1298       ],
1299       "return": {
1300         "type": "void",
1301         "doc": "\n"
1302       },
1303       "private": false,
1304       "static": false,
1305       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
1306       "linenr": 103,
1307       "html_filename": "Proxy2.html",
1308       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-setModel",
1309       "shortDoc": "<p>Sets the model associated with this proxy. This will only usually be called by a Store</p>\n"
1310     },
1311     {
1312       "tagname": "method",
1313       "name": "setReader",
1314       "member": "Ext.data.proxy.Proxy",
1315       "doc": "<p>Sets the Proxy's Reader by string, config object or Reader instance</p>\n",
1316       "params": [
1317         {
1318           "type": "String|Object|Ext.data.reader.Reader",
1319           "name": "reader",
1320           "doc": "<p>The new Reader, which can be either a type string, a configuration object\nor an <a href=\"#/api/Ext.data.reader.Reader\" rel=\"Ext.data.reader.Reader\" class=\"docClass\">Ext.data.reader.Reader</a> instance</p>\n",
1321           "optional": false
1322         }
1323       ],
1324       "return": {
1325         "type": "Ext.data.reader.Reader",
1326         "doc": "<p>The attached Reader object</p>\n"
1327       },
1328       "private": false,
1329       "static": false,
1330       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
1331       "linenr": 131,
1332       "html_filename": "Proxy2.html",
1333       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-setReader",
1334       "shortDoc": "<p>Sets the Proxy's Reader by string, config object or Reader instance</p>\n"
1335     },
1336     {
1337       "tagname": "method",
1338       "name": "setWriter",
1339       "member": "Ext.data.proxy.Proxy",
1340       "doc": "<p>Sets the Proxy's Writer by string, config object or Writer instance</p>\n",
1341       "params": [
1342         {
1343           "type": "String|Object|Ext.data.writer.Writer",
1344           "name": "writer",
1345           "doc": "<p>The new Writer, which can be either a type string, a configuration object\nor an <a href=\"#/api/Ext.data.writer.Writer\" rel=\"Ext.data.writer.Writer\" class=\"docClass\">Ext.data.writer.Writer</a> instance</p>\n",
1346           "optional": false
1347         }
1348       ],
1349       "return": {
1350         "type": "Ext.data.writer.Writer",
1351         "doc": "<p>The attached Writer object</p>\n"
1352       },
1353       "private": false,
1354       "static": false,
1355       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
1356       "linenr": 170,
1357       "html_filename": "Proxy2.html",
1358       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-setWriter",
1359       "shortDoc": "<p>Sets the Proxy's Writer by string, config object or Writer instance</p>\n"
1360     },
1361     {
1362       "tagname": "method",
1363       "name": "suspendEvents",
1364       "member": "Ext.util.Observable",
1365       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.data.proxy.Direct-method-resumeEvents\" rel=\"Ext.data.proxy.Direct-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1366       "params": [
1367         {
1368           "type": "Boolean",
1369           "name": "queueSuspended",
1370           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.data.proxy.Direct-method-resumeEvents\" rel=\"Ext.data.proxy.Direct-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
1371           "optional": false
1372         }
1373       ],
1374       "return": {
1375         "type": "void",
1376         "doc": "\n"
1377       },
1378       "private": false,
1379       "static": false,
1380       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1381       "linenr": 490,
1382       "html_filename": "Observable.html",
1383       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1384       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.data.proxy.Direct-method-resumeEvents\" rel=\"Ext.data.proxy.Direct-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
1385     },
1386     {
1387       "tagname": "method",
1388       "name": "un",
1389       "member": "Ext.util.Observable",
1390       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.data.proxy.Direct-method-removeListener\" rel=\"Ext.data.proxy.Direct-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
1391       "params": [
1392         {
1393           "type": "String",
1394           "name": "eventName",
1395           "doc": "<p>The type of event the handler was associated with.</p>\n",
1396           "optional": false
1397         },
1398         {
1399           "type": "Function",
1400           "name": "handler",
1401           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.data.proxy.Direct-method-addListener\" rel=\"Ext.data.proxy.Direct-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1402           "optional": false
1403         },
1404         {
1405           "type": "Object",
1406           "name": "scope",
1407           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1408           "optional": true
1409         }
1410       ],
1411       "return": {
1412         "type": "void",
1413         "doc": "\n"
1414       },
1415       "private": false,
1416       "static": false,
1417       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1418       "linenr": 608,
1419       "html_filename": "Observable.html",
1420       "href": "Observable.html#Ext-util-Observable-method-un",
1421       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.data.proxy.Direct-method-removeListener\" rel=\"Ext.data.proxy.Direct-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
1422     },
1423     {
1424       "tagname": "method",
1425       "name": "update",
1426       "member": "Ext.data.proxy.Proxy",
1427       "doc": "<p>Performs the given update operation.</p>\n",
1428       "params": [
1429         {
1430           "type": "Ext.data.Operation",
1431           "name": "operation",
1432           "doc": "<p>The Operation to perform</p>\n",
1433           "optional": false
1434         },
1435         {
1436           "type": "Function",
1437           "name": "callback",
1438           "doc": "<p>Callback function to be called when the Operation has completed (whether successful or not)</p>\n",
1439           "optional": false
1440         },
1441         {
1442           "type": "Object",
1443           "name": "scope",
1444           "doc": "<p>Scope to execute the callback function in</p>\n",
1445           "optional": false
1446         }
1447       ],
1448       "return": {
1449         "type": "void",
1450         "doc": "\n"
1451       },
1452       "private": false,
1453       "static": false,
1454       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Proxy.js",
1455       "linenr": 223,
1456       "html_filename": "Proxy2.html",
1457       "href": "Proxy2.html#Ext-data-proxy-Proxy-method-update",
1458       "shortDoc": "<p>Performs the given update operation.</p>\n"
1459     }
1460   ],
1461   "property": [
1462
1463   ],
1464   "event": [
1465     {
1466       "tagname": "event",
1467       "name": "exception",
1468       "member": "Ext.data.proxy.Server",
1469       "doc": "<p>Fires when the server returns an exception</p>\n",
1470       "params": [
1471         {
1472           "type": "Ext.data.proxy.Proxy",
1473           "name": "this",
1474           "doc": "\n",
1475           "optional": false
1476         },
1477         {
1478           "type": "Object",
1479           "name": "response",
1480           "doc": "<p>The response from the AJAX request</p>\n",
1481           "optional": false
1482         },
1483         {
1484           "type": "Ext.data.Operation",
1485           "name": "operation",
1486           "doc": "<p>The operation that triggered request</p>\n",
1487           "optional": false
1488         }
1489       ],
1490       "private": false,
1491       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Server.js",
1492       "linenr": 132,
1493       "html_filename": "Server.html",
1494       "href": "Server.html#Ext-data-proxy-Server-event-exception",
1495       "shortDoc": "<p>Fires when the server returns an exception</p>\n"
1496     }
1497   ],
1498   "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/proxy/Direct.js",
1499   "linenr": 1,
1500   "html_filename": "Direct.html",
1501   "href": "Direct.html#Ext-data-proxy-Direct",
1502   "cssVar": [
1503
1504   ],
1505   "cssMixin": [
1506
1507   ],
1508   "component": false,
1509   "superclasses": [
1510     "Ext.data.proxy.Proxy",
1511     "Ext.data.proxy.Server"
1512   ],
1513   "subclasses": [
1514
1515   ],
1516   "mixedInto": [
1517
1518   ],
1519   "allMixins": [
1520     "Ext.util.Observable"
1521   ]
1522 });