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
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
13 * TODO Not yet implemented. Implement in Ext.data.Store#execute
15 Ext.data.Request = function(params) {
16 Ext.apply(this, params);
18 Ext.data.Request.prototype = {
19 <div id="cfg-Ext.data.Request-action"></div>/**
20 * @cfg {String} action
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.
27 <div id="cfg-Ext.data.Request-params"></div>/**
28 * @cfg {Object} params HTTP request params
31 <div id="cfg-Ext.data.Request-callback"></div>/**
32 * @cfg {Function} callback The function to call when request is complete
34 callback : Ext.emptyFn,
35 <div id="cfg-Ext.data.Request-scope"></div>/**
36 * @cfg {Object} scope The scope of the callback funtion
39 <div id="cfg-Ext.data.Request-reader"></div>/**
40 * @cfg {Ext.data.DataReader} reader The DataReader instance which will parse the received response