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>
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.
13 * http://www.extjs.com/license
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
19 * TODO Not yet implemented. Implement in Ext.data.Store#execute
21 Ext.data.Request = function(params) {
22 Ext.apply(this, params);
24 Ext.data.Request.prototype = {
25 <div id="cfg-Ext.data.Request-action"></div>/**
26 * @cfg {String} action
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.
33 <div id="cfg-Ext.data.Request-params"></div>/**
34 * @cfg {Object} params HTTP request params
37 <div id="cfg-Ext.data.Request-callback"></div>/**
38 * @cfg {Function} callback The function to call when request is complete
40 callback : Ext.emptyFn,
41 <div id="cfg-Ext.data.Request-scope"></div>/**
42 * @cfg {Object} scope The scope of the callback funtion
45 <div id="cfg-Ext.data.Request-reader"></div>/**
46 * @cfg {Ext.data.DataReader} reader The DataReader instance which will parse the received response