Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ArrayReader.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.ArrayReader"></div>/**
10  * @class Ext.data.ArrayReader
11  * @extends Ext.data.JsonReader
12  * <p>Data reader class to create an Array of {@link Ext.data.Record} objects from an Array.
13  * Each element of that Array represents a row of data fields. The
14  * fields are pulled into a Record object using as a subscript, the <code>mapping</code> property
15  * of the field definition if it exists, or the field's ordinal position in the definition.</p>
16  * <p>Example code:</p>
17  * <pre><code>
18 var Employee = Ext.data.Record.create([
19     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
20     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
21 ]);
22 var myReader = new Ext.data.ArrayReader({
23     {@link #idIndex}: 0
24 }, Employee);
25 </code></pre>
26  * <p>This would consume an Array like this:</p>
27  * <pre><code>
28 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
29  * </code></pre>
30  * @constructor
31  * Create a new ArrayReader
32  * @param {Object} meta Metadata configuration options.
33  * @param {Array/Object} recordType
34  * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
35  * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
36  * constructor created from {@link Ext.data.Record#create}.</p>
37  */
38 Ext.data.ArrayReader = Ext.extend(Ext.data.JsonReader, {
39     <div id="cfg-Ext.data.ArrayReader-successProperty"></div>/**
40      * @cfg {String} successProperty
41      * @hide
42      */
43     <div id="cfg-Ext.data.ArrayReader-id"></div>/**
44      * @cfg {Number} id (optional) The subscript within row Array that provides an ID for the Record.
45      * Deprecated. Use {@link #idIndex} instead.
46      */
47     <div id="cfg-Ext.data.ArrayReader-idIndex"></div>/**
48      * @cfg {Number} idIndex (optional) The subscript within row Array that provides an ID for the Record.
49      */
50     <div id="method-Ext.data.ArrayReader-readRecords"></div>/**
51      * Create a data block containing Ext.data.Records from an Array.
52      * @param {Object} o An Array of row objects which represents the dataset.
53      * @return {Object} data A data block which is used by an Ext.data.Store object as
54      * a cache of Ext.data.Records.
55      */
56     readRecords : function(o){
57         this.arrayData = o;
58         var s = this.meta,
59             sid = s ? Ext.num(s.idIndex, s.id) : null,
60             recordType = this.recordType,
61             fields = recordType.prototype.fields,
62             records = [],
63             v;
64
65         var root = this.getRoot(o);
66
67         for(var i = 0, len = root.length; i < len; i++) {
68             var n = root[i],
69                 values = {},
70                 id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
71             for(var j = 0, jlen = fields.length; j < jlen; j++) {
72                 var f = fields.items[j],
73                     k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
74                 v = n[k] !== undefined ? n[k] : f.defaultValue;
75                 v = f.convert(v, n);
76                 values[f.name] = v;
77             }
78             var record = new recordType(values, id);
79             record.json = n;
80             records[records.length] = record;
81         }
82
83         var totalRecords = records.length;
84
85         if(s.totalProperty) {
86             v = parseInt(this.getTotal(o), 10);
87             if(!isNaN(v)) {
88                 totalRecords = v;
89             }
90         }
91
92         return {
93             records : records,
94             totalRecords : totalRecords
95         };
96     }
97 });</pre>    \r
98 </body>\r
99 </html>