Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / source / Request.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-data-Request-method-constructor'><span id='Ext-data-Request'>/**
19 </span></span> * @author Ed Spencer
20  * @class Ext.data.Request
21  * @extends Object
22  * 
23  * &lt;p&gt;Simple class that represents a Request that will be made by any {@link Ext.data.proxy.Server} subclass.
24  * All this class does is standardize the representation of a Request as used by any ServerProxy subclass,
25  * it does not contain any actual logic or perform the request itself.&lt;/p&gt;
26  * 
27  * @constructor
28  * @param {Object} config Optional config object
29  */
30 Ext.define('Ext.data.Request', {
31 <span id='Ext-data-Request-cfg-action'>    /**
32 </span>     * @cfg {String} action The name of the action this Request represents. Usually one of 'create', 'read', 'update' or 'destroy'
33      */
34     action: undefined,
35     
36 <span id='Ext-data-Request-cfg-params'>    /**
37 </span>     * @cfg {Object} params HTTP request params. The Proxy and its Writer have access to and can modify this object.
38      */
39     params: undefined,
40     
41 <span id='Ext-data-Request-cfg-method'>    /**
42 </span>     * @cfg {String} method The HTTP method to use on this Request (defaults to 'GET'). Should be one of 'GET', 'POST', 'PUT' or 'DELETE'
43      */
44     method: 'GET',
45     
46 <span id='Ext-data-Request-cfg-url'>    /**
47 </span>     * @cfg {String} url The url to access on this Request
48      */
49     url: undefined,
50
51     constructor: function(config) {
52         Ext.apply(this, config);
53     }
54 });</pre>
55 </body>
56 </html>