Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / Request.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="cls-Ext.data.Request"></div>/**
10  * @class Ext.data.Request
11  * A simple Request class used internally to the data package to provide more generalized remote-requests
12  * to a DataProxy.
13  * TODO Not yet implemented.  Implement in Ext.data.Store#execute
14  */
15 Ext.data.Request = function(params) {
16     Ext.apply(this, params);
17 };
18 Ext.data.Request.prototype = {
19     <div id="cfg-Ext.data.Request-action"></div>/**
20      * @cfg {String} action
21      */
22     action : undefined,
23     <div id="cfg-Ext.data.Request-rs"></div>/**
24      * @cfg {Ext.data.Record[]/Ext.data.Record} rs The Store recordset associated with the request.
25      */
26     rs : undefined,
27     <div id="cfg-Ext.data.Request-params"></div>/**
28      * @cfg {Object} params HTTP request params
29      */
30     params: undefined,
31     <div id="cfg-Ext.data.Request-callback"></div>/**
32      * @cfg {Function} callback The function to call when request is complete
33      */
34     callback : Ext.emptyFn,
35     <div id="cfg-Ext.data.Request-scope"></div>/**
36      * @cfg {Object} scope The scope of the callback funtion
37      */
38     scope : undefined,
39     <div id="cfg-Ext.data.Request-reader"></div>/**
40      * @cfg {Ext.data.DataReader} reader The DataReader instance which will parse the received response
41      */
42     reader : undefined
43 };
44 </pre>    \r
45 </body>\r
46 </html>