Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / MemoryProxy.html
1 <html>\r
2 <head>\r
3   <title>The source code</title>\r
4     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
5     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
6 </head>\r
7 <body  onload="prettyPrint();">\r
8     <pre class="prettyprint lang-js"><div id="cls-Ext.data.MemoryProxy"></div>/**\r
9  * @class Ext.data.MemoryProxy\r
10  * @extends Ext.data.DataProxy\r
11  * An implementation of Ext.data.DataProxy that simply passes the data specified in its constructor\r
12  * to the Reader when its load method is called.\r
13  * @constructor\r
14  * @param {Object} data The data object which the Reader uses to construct a block of Ext.data.Records.\r
15  */\r
16 Ext.data.MemoryProxy = function(data){\r
17     // Must define a dummy api with "read" action to satisfy DataProxy#doRequest and Ext.data.Api#prepare *before* calling super\r
18     var api = {};\r
19     api[Ext.data.Api.actions.read] = true;\r
20     Ext.data.MemoryProxy.superclass.constructor.call(this, {\r
21         api: api\r
22     });\r
23     this.data = data;\r
24 };\r
25 \r
26 Ext.extend(Ext.data.MemoryProxy, Ext.data.DataProxy, {\r
27     <div id="event-Ext.data.MemoryProxy-loadexception"></div>/**\r
28      * @event loadexception\r
29      * Fires if an exception occurs in the Proxy during data loading. Note that this event is also relayed\r
30      * through {@link Ext.data.Store}, so you can listen for it directly on any Store instance.\r
31      * @param {Object} this\r
32      * @param {Object} arg The callback's arg object passed to the {@link #load} function\r
33      * @param {Object} null This parameter does not apply and will always be null for MemoryProxy\r
34      * @param {Error} e The JavaScript Error object caught if the configured Reader could not read the data\r
35      */\r
36 \r
37        <div id="method-Ext.data.MemoryProxy-doRequest"></div>/**\r
38      * MemoryProxy implementation of DataProxy#doRequest\r
39      * @param {String} action\r
40      * @param {Ext.data.Record/Ext.data.Record[]} rs If action is load, rs will be null\r
41      * @param {Object} params An object containing properties which are to be used as HTTP parameters\r
42      * for the request to the remote server.\r
43      * @param {Ext.data.DataReader} reader The Reader object which converts the data\r
44      * object into a block of Ext.data.Records.\r
45      * @param {Function} callback The function into which to pass the block of Ext.data.Records.\r
46      * The function must be passed <ul>\r
47      * <li>The Record block object</li>\r
48      * <li>The "arg" argument from the load function</li>\r
49      * <li>A boolean success indicator</li>\r
50      * </ul>\r
51      * @param {Object} scope The scope in which to call the callback\r
52      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.\r
53      */\r
54     doRequest : function(action, rs, params, reader, callback, scope, arg) {\r
55         // No implementation for CRUD in MemoryProxy.  Assumes all actions are 'load'\r
56         params = params || {};\r
57         var result;\r
58         try {\r
59             result = reader.readRecords(this.data);\r
60         }catch(e){\r
61             // @deprecated loadexception\r
62             this.fireEvent("loadexception", this, null, arg, e);\r
63 \r
64             this.fireEvent('exception', this, 'response', action, arg, null, e);\r
65             callback.call(scope, null, arg, false);\r
66             return;\r
67         }\r
68         callback.call(scope, result, arg, true);\r
69     }\r
70 });</pre>    \r
71 </body>\r
72 </html>