Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / Response.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.Response"></div>/**
10  * @class Ext.data.Response
11  * A generic response class to normalize response-handling internally to the framework.
12  */
13 Ext.data.Response = function(params) {
14     Ext.apply(this, params);
15 };
16 Ext.data.Response.prototype = {
17     <div id="cfg-Ext.data.Response-action"></div>/**
18      * @cfg {String} action {@link Ext.data.Api#actions}
19      */
20     action: undefined,
21     <div id="cfg-Ext.data.Response-success"></div>/**
22      * @cfg {Boolean} success
23      */
24     success : undefined,
25     <div id="cfg-Ext.data.Response-message"></div>/**
26      * @cfg {String} message
27      */
28     message : undefined,
29     <div id="cfg-Ext.data.Response-data"></div>/**
30      * @cfg {Array/Object} data
31      */
32     data: undefined,
33     <div id="cfg-Ext.data.Response-raw"></div>/**
34      * @cfg {Object} raw The raw response returned from server-code
35      */
36     raw: undefined,
37     <div id="cfg-Ext.data.Response-records"></div>/**
38      * @cfg {Ext.data.Record/Ext.data.Record[]} records related to the Request action
39      */
40     records: undefined
41 };
42 </pre>    \r
43 </body>\r
44 </html>