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