data-json-debug.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:24k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.data.JsonWriter
  9.  * @extends Ext.data.DataWriter
  10.  * DataWriter extension for writing an array or single {@link Ext.data.Record} object(s) in preparation for executing a remote CRUD action.
  11.  */
  12. Ext.data.JsonWriter = function(config) {
  13.     Ext.data.JsonWriter.superclass.constructor.call(this, config);
  14.     // careful to respect "returnJson", renamed to "encode"
  15.     // TODO: remove after Ext-3.0.1 release
  16.     if (this.returnJson != undefined) {
  17.         this.encode = this.returnJson;
  18.     }
  19. }
  20. Ext.extend(Ext.data.JsonWriter, Ext.data.DataWriter, {
  21.     /**
  22.      * @cfg {Boolean} returnJson <b>Deprecated, will be removed in Ext-3.0.1</b>.  Use {@link Ext.data.JsonWriter#encode} instead.
  23.      */
  24.     returnJson : undefined,
  25.     /**
  26.      * @cfg {Boolean} encode <tt>true</tt> to {@link Ext.util.JSON#encode encode} the
  27.      * {@link Ext.data.DataWriter#toHash hashed data}. Defaults to <tt>true</tt>.  When using
  28.      * {@link Ext.data.DirectProxy}, set this to <tt>false</tt> since Ext.Direct.JsonProvider will perform
  29.      * its own json-encoding.  In addition, if you're using {@link Ext.data.HttpProxy}, setting to <tt>false</tt>
  30.      * will cause HttpProxy to transmit data using the <b>jsonData</b> configuration-params of {@link Ext.Ajax#request}
  31.      * instead of <b>params</b>.  When using a {@link Ext.data.Store#restful} Store, some serverside frameworks are
  32.      * tuned to expect data through the jsonData mechanism.  In those cases, one will want to set <b>encode: <tt>false</tt></b>, as in
  33.      * let the lower-level connection object (eg: Ext.Ajax) do the encoding.
  34.      */
  35.     encode : true,
  36.     /**
  37.      * Final action of a write event.  Apply the written data-object to params.
  38.      * @param {Object} http params-object to write-to.
  39.      * @param {Object} baseParams as defined by {@link Ext.data.Store#baseParams}.  The baseParms must be encoded by the extending class, eg: {@link Ext.data.JsonWriter}, {@link Ext.data.XmlWriter}.
  40.      * @param {Object/Object[]} data Data-object representing compiled Store-recordset.
  41.      */
  42.     render : function(params, baseParams, data) {
  43.         if (this.encode === true) {
  44.             // Encode here now.
  45.             Ext.apply(params, baseParams);
  46.             params[this.meta.root] = Ext.encode(data);
  47.         } else {
  48.             // defer encoding for some other layer, probably in {@link Ext.Ajax#request}.  Place everything into "jsonData" key.
  49.             var jdata = Ext.apply({}, baseParams);
  50.             jdata[this.meta.root] = data;
  51.             params.jsonData = jdata;
  52.         }
  53.     },
  54.     /**
  55.      * Implements abstract Ext.data.DataWriter#createRecord
  56.      * @protected
  57.      * @param {Ext.data.Record} rec
  58.      * @return {Object}
  59.      */
  60.     createRecord : function(rec) {
  61.        return this.toHash(rec);
  62.     },
  63.     /**
  64.      * Implements abstract Ext.data.DataWriter#updateRecord
  65.      * @protected
  66.      * @param {Ext.data.Record} rec
  67.      * @return {Object}
  68.      */
  69.     updateRecord : function(rec) {
  70.         return this.toHash(rec);
  71.     },
  72.     /**
  73.      * Implements abstract Ext.data.DataWriter#destroyRecord
  74.      * @protected
  75.      * @param {Ext.data.Record} rec
  76.      * @return {Object}
  77.      */
  78.     destroyRecord : function(rec) {
  79.         return rec.id;
  80.     }
  81. });/**
  82.  * @class Ext.data.JsonReader
  83.  * @extends Ext.data.DataReader
  84.  * <p>Data reader class to create an Array of {@link Ext.data.Record} objects
  85.  * from a JSON packet based on mappings in a provided {@link Ext.data.Record}
  86.  * constructor.</p>
  87.  * <p>Example code:</p>
  88.  * <pre><code>
  89. var myReader = new Ext.data.JsonReader({
  90.     // metadata configuration options:
  91.     {@link #idProperty}: 'id'
  92.     {@link #root}: 'rows',
  93.     {@link #totalProperty}: 'results',
  94.     {@link Ext.data.DataReader#messageProperty}: "msg"  // The element within the response that provides a user-feedback message (optional)
  95.     // the fields config option will internally create an {@link Ext.data.Record}
  96.     // constructor that provides mapping for reading the record data objects
  97.     {@link Ext.data.DataReader#fields fields}: [
  98.         // map Record&#39;s 'firstname' field to data object&#39;s key of same name
  99.         {name: 'name'},
  100.         // map Record&#39;s 'job' field to data object&#39;s 'occupation' key
  101.         {name: 'job', mapping: 'occupation'}
  102.     ]
  103. });
  104. </code></pre>
  105.  * <p>This would consume a JSON data object of the form:</p><pre><code>
  106. {
  107.     results: 2000, // Reader&#39;s configured {@link #totalProperty}
  108.     rows: [        // Reader&#39;s configured {@link #root}
  109.         // record data objects:
  110.         { {@link #idProperty id}: 1, firstname: 'Bill', occupation: 'Gardener' },
  111.         { {@link #idProperty id}: 2, firstname: 'Ben' , occupation: 'Horticulturalist' },
  112.         ...
  113.     ]
  114. }
  115. </code></pre>
  116.  * <p><b><u>Automatic configuration using metaData</u></b></p>
  117.  * <p>It is possible to change a JsonReader's metadata at any time by including
  118.  * a <b><tt>metaData</tt></b> property in the JSON data object. If the JSON data
  119.  * object has a <b><tt>metaData</tt></b> property, a {@link Ext.data.Store Store}
  120.  * object using this Reader will reconfigure itself to use the newly provided
  121.  * field definition and fire its {@link Ext.data.Store#metachange metachange}
  122.  * event. The metachange event handler may interrogate the <b><tt>metaData</tt></b>
  123.  * property to perform any configuration required.</p>
  124.  * <p>Note that reconfiguring a Store potentially invalidates objects which may
  125.  * refer to Fields or Records which no longer exist.</p>
  126.  * <p>To use this facility you would create the JsonReader like this:</p><pre><code>
  127. var myReader = new Ext.data.JsonReader();
  128. </code></pre>
  129.  * <p>The first data packet from the server would configure the reader by
  130.  * containing a <b><tt>metaData</tt></b> property <b>and</b> the data. For
  131.  * example, the JSON data object might take the form:</p><pre><code>
  132. {
  133.     metaData: {
  134.         "{@link #idProperty}": "id",
  135.         "{@link #root}": "rows",
  136.         "{@link #totalProperty}": "results"
  137.         "{@link #successProperty}": "success",
  138.         "{@link Ext.data.DataReader#fields fields}": [
  139.             {"name": "name"},
  140.             {"name": "job", "mapping": "occupation"}
  141.         ],
  142.         // used by store to set its sortInfo
  143.         "sortInfo":{
  144.            "field": "name",
  145.            "direction": "ASC"
  146.         },
  147.         // {@link Ext.PagingToolbar paging data} (if applicable)
  148.         "start": 0,
  149.         "limit": 2,
  150.         // custom property
  151.         "foo": "bar"
  152.     },
  153.     // Reader&#39;s configured {@link #successProperty}
  154.     "success": true,
  155.     // Reader&#39;s configured {@link #totalProperty}
  156.     "results": 2000,
  157.     // Reader&#39;s configured {@link #root}
  158.     // (this data simulates 2 results {@link Ext.PagingToolbar per page})
  159.     "rows": [ // <b>*Note:</b> this must be an Array
  160.         { "id": 1, "name": "Bill", "occupation": "Gardener" },
  161.         { "id": 2, "name":  "Ben", "occupation": "Horticulturalist" }
  162.     ]
  163. }
  164.  * </code></pre>
  165.  * <p>The <b><tt>metaData</tt></b> property in the JSON data object should contain:</p>
  166.  * <div class="mdetail-params"><ul>
  167.  * <li>any of the configuration options for this class</li>
  168.  * <li>a <b><tt>{@link Ext.data.Record#fields fields}</tt></b> property which
  169.  * the JsonReader will use as an argument to the
  170.  * {@link Ext.data.Record#create data Record create method} in order to
  171.  * configure the layout of the Records it will produce.</li>
  172.  * <li>a <b><tt>{@link Ext.data.Store#sortInfo sortInfo}</tt></b> property
  173.  * which the JsonReader will use to set the {@link Ext.data.Store}'s
  174.  * {@link Ext.data.Store#sortInfo sortInfo} property</li>
  175.  * <li>any custom properties needed</li>
  176.  * </ul></div>
  177.  *
  178.  * @constructor
  179.  * Create a new JsonReader
  180.  * @param {Object} meta Metadata configuration options.
  181.  * @param {Array/Object} recordType
  182.  * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
  183.  * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
  184.  * constructor created from {@link Ext.data.Record#create}.</p>
  185.  */
  186. Ext.data.JsonReader = function(meta, recordType){
  187.     meta = meta || {};
  188.     /**
  189.      * @cfg {String} idProperty [id] Name of the property within a row object
  190.      * that contains a record identifier value.  Defaults to <tt>id</tt>
  191.      */
  192.     /**
  193.      * @cfg {String} successProperty [success] Name of the property from which to
  194.      * retrieve the success attribute. Defaults to <tt>success</tt>.  See
  195.      * {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
  196.      * for additional information.
  197.      */
  198.     /**
  199.      * @cfg {String} totalProperty [total] Name of the property from which to
  200.      * retrieve the total number of records in the dataset. This is only needed
  201.      * if the whole dataset is not passed in one go, but is being paged from
  202.      * the remote server.  Defaults to <tt>total</tt>.
  203.      */
  204.     /**
  205.      * @cfg {String} root [undefined] <b>Required</b>.  The name of the property
  206.      * which contains the Array of row objects.  Defaults to <tt>undefined</tt>.
  207.      * An exception will be thrown if the root property is undefined. The data
  208.      * packet value for this property should be an empty array to clear the data
  209.      * or show no data.
  210.      */
  211.     Ext.applyIf(meta, {
  212.         idProperty: 'id',
  213.         successProperty: 'success',
  214.         totalProperty: 'total'
  215.     });
  216.     Ext.data.JsonReader.superclass.constructor.call(this, meta, recordType || meta.fields);
  217. };
  218. Ext.extend(Ext.data.JsonReader, Ext.data.DataReader, {
  219.     /**
  220.      * This JsonReader's metadata as passed to the constructor, or as passed in
  221.      * the last data packet's <b><tt>metaData</tt></b> property.
  222.      * @type Mixed
  223.      * @property meta
  224.      */
  225.     /**
  226.      * This method is only used by a DataProxy which has retrieved data from a remote server.
  227.      * @param {Object} response The XHR object which contains the JSON data in its responseText.
  228.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  229.      * a cache of Ext.data.Records.
  230.      */
  231.     read : function(response){
  232.         var json = response.responseText;
  233.         var o = Ext.decode(json);
  234.         if(!o) {
  235.             throw {message: 'JsonReader.read: Json object not found'};
  236.         }
  237.         return this.readRecords(o);
  238.     },
  239.     /**
  240.      * Decode a json response from server.
  241.      * @param {String} action [Ext.data.Api.actions.create|read|update|destroy]
  242.      * @param {Object} response
  243.      * TODO: refactor code between JsonReader#readRecords, #readResponse into 1 method.
  244.      * there's ugly duplication going on due to maintaining backwards compat. with 2.0.  It's time to do this.
  245.      */
  246.     readResponse : function(action, response) {
  247.         var o = (response.responseText !== undefined) ? Ext.decode(response.responseText) : response;
  248.         if(!o) {
  249.             throw new Ext.data.JsonReader.Error('response');
  250.         }
  251.         var root = this.getRoot(o);
  252.         if (action === Ext.data.Api.actions.create) {
  253.             var def = Ext.isDefined(root);
  254.             if (def && Ext.isEmpty(root)) {
  255.                 throw new Ext.data.JsonReader.Error('root-empty', this.meta.root);
  256.             }
  257.             else if (!def) {
  258.                 throw new Ext.data.JsonReader.Error('root-undefined-response', this.meta.root);
  259.             }
  260.         }
  261.         // instantiate response object
  262.         var res = new Ext.data.Response({
  263.             action: action,
  264.             success: this.getSuccess(o),
  265.             data: (root) ? this.extractData(root, false) : [],
  266.             message: this.getMessage(o),
  267.             raw: o
  268.         });
  269.         // blow up if no successProperty
  270.         if (Ext.isEmpty(res.success)) {
  271.             throw new Ext.data.JsonReader.Error('successProperty-response', this.meta.successProperty);
  272.         }
  273.         return res;
  274.     },
  275.     /**
  276.      * Create a data block containing Ext.data.Records from a JSON object.
  277.      * @param {Object} o An object which contains an Array of row objects in the property specified
  278.      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
  279.      * which contains the total size of the dataset.
  280.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  281.      * a cache of Ext.data.Records.
  282.      */
  283.     readRecords : function(o){
  284.         /**
  285.          * After any data loads, the raw JSON data is available for further custom processing.  If no data is
  286.          * loaded or there is a load exception this property will be undefined.
  287.          * @type Object
  288.          */
  289.         this.jsonData = o;
  290.         if(o.metaData){
  291.             this.onMetaChange(o.metaData);
  292.         }
  293.         var s = this.meta, Record = this.recordType,
  294.             f = Record.prototype.fields, fi = f.items, fl = f.length, v;
  295.         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
  296.         if(s.totalProperty){
  297.             v = parseInt(this.getTotal(o), 10);
  298.             if(!isNaN(v)){
  299.                 totalRecords = v;
  300.             }
  301.         }
  302.         if(s.successProperty){
  303.             v = this.getSuccess(o);
  304.             if(v === false || v === 'false'){
  305.                 success = false;
  306.             }
  307.         }
  308.         // TODO return Ext.data.Response instance instead.  @see #readResponse
  309.         return {
  310.             success : success,
  311.             records : this.extractData(root, true), // <-- true to return [Ext.data.Record]
  312.             totalRecords : totalRecords
  313.         };
  314.     },
  315.     // private
  316.     buildExtractors : function() {
  317.         if(this.ef){
  318.             return;
  319.         }
  320.         var s = this.meta, Record = this.recordType,
  321.             f = Record.prototype.fields, fi = f.items, fl = f.length;
  322.         if(s.totalProperty) {
  323.             this.getTotal = this.createAccessor(s.totalProperty);
  324.         }
  325.         if(s.successProperty) {
  326.             this.getSuccess = this.createAccessor(s.successProperty);
  327.         }
  328.         if (s.messageProperty) {
  329.             this.getMessage = this.createAccessor(s.messageProperty);
  330.         }
  331.         this.getRoot = s.root ? this.createAccessor(s.root) : function(p){return p;};
  332.         if (s.id || s.idProperty) {
  333.             var g = this.createAccessor(s.id || s.idProperty);
  334.             this.getId = function(rec) {
  335.                 var r = g(rec);
  336.                 return (r === undefined || r === '') ? null : r;
  337.             };
  338.         } else {
  339.             this.getId = function(){return null;};
  340.         }
  341.         var ef = [];
  342.         for(var i = 0; i < fl; i++){
  343.             f = fi[i];
  344.             var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
  345.             ef.push(this.createAccessor(map));
  346.         }
  347.         this.ef = ef;
  348.     },
  349.     /**
  350.      * @ignore
  351.      * TODO This isn't used anywhere??  Don't we want to use this where possible instead of complex #createAccessor?
  352.      */
  353.     simpleAccess : function(obj, subsc) {
  354.         return obj[subsc];
  355.     },
  356.     /**
  357.      * @ignore
  358.      */
  359.     createAccessor : function(){
  360.         var re = /[[.]/;
  361.         return function(expr) {
  362.             try {
  363.                 return(re.test(expr)) ?
  364.                 new Function('obj', 'return obj.' + expr) :
  365.                 function(obj){
  366.                     return obj[expr];
  367.                 };
  368.             } catch(e){}
  369.             return Ext.emptyFn;
  370.         };
  371.     }(),
  372.     /**
  373.      * type-casts a single row of raw-data from server
  374.      * @param {Object} data
  375.      * @param {Array} items
  376.      * @param {Integer} len
  377.      * @private
  378.      */
  379.     extractValues : function(data, items, len) {
  380.         var f, values = {};
  381.         for(var j = 0; j < len; j++){
  382.             f = items[j];
  383.             var v = this.ef[j](data);
  384.             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue, data);
  385.         }
  386.         return values;
  387.     }
  388. });
  389. /**
  390.  * @class Ext.data.JsonReader.Error
  391.  * Error class for JsonReader
  392.  */
  393. Ext.data.JsonReader.Error = Ext.extend(Ext.Error, {
  394.     constructor : function(message, arg) {
  395.         this.arg = arg;
  396.         Ext.Error.call(this, message);
  397.     },
  398.     name : 'Ext.data.JsonReader'
  399. });
  400. Ext.apply(Ext.data.JsonReader.Error.prototype, {
  401.     lang: {
  402.         'response': 'An error occurred while json-decoding your server response',
  403.         'successProperty-response': 'Could not locate your "successProperty" in your server response.  Please review your JsonReader config to ensure the config-property "successProperty" matches the property in your server-response.  See the JsonReader docs.',
  404.         'root-undefined-config': 'Your JsonReader was configured without a "root" property.  Please review your JsonReader config and make sure to define the root property.  See the JsonReader docs.',
  405.         'idProperty-undefined' : 'Your JsonReader was configured without an "idProperty"  Please review your JsonReader configuration and ensure the "idProperty" is set (e.g.: "id").  See the JsonReader docs.',
  406.         'root-empty': 'Data was expected to be returned by the server in the "root" property of the response.  Please review your JsonReader configuration to ensure the "root" property matches that returned in the server-response.  See JsonReader docs.'
  407.     }
  408. });
  409. /**
  410.  * @class Ext.data.ArrayReader
  411.  * @extends Ext.data.JsonReader
  412.  * <p>Data reader class to create an Array of {@link Ext.data.Record} objects from an Array.
  413.  * Each element of that Array represents a row of data fields. The
  414.  * fields are pulled into a Record object using as a subscript, the <code>mapping</code> property
  415.  * of the field definition if it exists, or the field's ordinal position in the definition.</p>
  416.  * <p>Example code:</p>
  417.  * <pre><code>
  418. var Employee = Ext.data.Record.create([
  419.     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
  420.     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
  421. ]);
  422. var myReader = new Ext.data.ArrayReader({
  423.     {@link #idIndex}: 0
  424. }, Employee);
  425. </code></pre>
  426.  * <p>This would consume an Array like this:</p>
  427.  * <pre><code>
  428. [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
  429.  * </code></pre>
  430.  * @constructor
  431.  * Create a new ArrayReader
  432.  * @param {Object} meta Metadata configuration options.
  433.  * @param {Array/Object} recordType
  434.  * <p>Either an Array of {@link Ext.data.Field Field} definition objects (which
  435.  * will be passed to {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record}
  436.  * constructor created from {@link Ext.data.Record#create}.</p>
  437.  */
  438. Ext.data.ArrayReader = Ext.extend(Ext.data.JsonReader, {
  439.     /**
  440.      * @cfg {String} successProperty
  441.      * @hide
  442.      */
  443.     /**
  444.      * @cfg {Number} id (optional) The subscript within row Array that provides an ID for the Record.
  445.      * Deprecated. Use {@link #idIndex} instead.
  446.      */
  447.     /**
  448.      * @cfg {Number} idIndex (optional) The subscript within row Array that provides an ID for the Record.
  449.      */
  450.     /**
  451.      * Create a data block containing Ext.data.Records from an Array.
  452.      * @param {Object} o An Array of row objects which represents the dataset.
  453.      * @return {Object} data A data block which is used by an Ext.data.Store object as
  454.      * a cache of Ext.data.Records.
  455.      */
  456.     readRecords : function(o){
  457.         this.arrayData = o;
  458.         var s = this.meta,
  459.             sid = s ? Ext.num(s.idIndex, s.id) : null,
  460.             recordType = this.recordType,
  461.             fields = recordType.prototype.fields,
  462.             records = [],
  463.             v;
  464.         var root = this.getRoot(o);
  465.         for(var i = 0, len = root.length; i < len; i++) {
  466.             var n = root[i],
  467.                 values = {},
  468.                 id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
  469.             for(var j = 0, jlen = fields.length; j < jlen; j++) {
  470.                 var f = fields.items[j],
  471.                     k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
  472.                 v = n[k] !== undefined ? n[k] : f.defaultValue;
  473.                 v = f.convert(v, n);
  474.                 values[f.name] = v;
  475.             }
  476.             var record = new recordType(values, id);
  477.             record.json = n;
  478.             records[records.length] = record;
  479.         }
  480.         var totalRecords = records.length;
  481.         if(s.totalProperty) {
  482.             v = parseInt(this.getTotal(o), 10);
  483.             if(!isNaN(v)) {
  484.                 totalRecords = v;
  485.             }
  486.         }
  487.         return {
  488.             records : records,
  489.             totalRecords : totalRecords
  490.         };
  491.     }
  492. });/**
  493.  * @class Ext.data.ArrayStore
  494.  * @extends Ext.data.Store
  495.  * <p>Formerly known as "SimpleStore".</p>
  496.  * <p>Small helper class to make creating {@link Ext.data.Store}s from Array data easier.
  497.  * An ArrayStore will be automatically configured with a {@link Ext.data.ArrayReader}.</p>
  498.  * <p>A store configuration would be something like:<pre><code>
  499. var store = new Ext.data.ArrayStore({
  500.     // store configs
  501.     autoDestroy: true,
  502.     storeId: 'myStore',
  503.     // reader configs
  504.     idIndex: 0,  
  505.     fields: [
  506.        'company',
  507.        {name: 'price', type: 'float'},
  508.        {name: 'change', type: 'float'},
  509.        {name: 'pctChange', type: 'float'},
  510.        {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'}
  511.     ]
  512. });
  513.  * </code></pre></p>
  514.  * <p>This store is configured to consume a returned object of the form:<pre><code>
  515. var myData = [
  516.     ['3m Co',71.72,0.02,0.03,'9/1 12:00am'],
  517.     ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am'],
  518.     ['Boeing Co.',75.43,0.53,0.71,'9/1 12:00am'],
  519.     ['Hewlett-Packard Co.',36.53,-0.03,-0.08,'9/1 12:00am'],
  520.     ['Wal-Mart Stores, Inc.',45.45,0.73,1.63,'9/1 12:00am']
  521. ];
  522.  * </code></pre>
  523.  * An object literal of this form could also be used as the {@link #data} config option.</p>
  524.  * <p><b>*Note:</b> Although not listed here, this class accepts all of the configuration options of 
  525.  * <b>{@link Ext.data.ArrayReader ArrayReader}</b>.</p>
  526.  * @constructor
  527.  * @param {Object} config
  528.  * @xtype arraystore
  529.  */
  530. Ext.data.ArrayStore = Ext.extend(Ext.data.Store, {
  531.     /**
  532.      * @cfg {Ext.data.DataReader} reader @hide
  533.      */
  534.     constructor: function(config){
  535.         Ext.data.ArrayStore.superclass.constructor.call(this, Ext.apply(config, {
  536.             reader: new Ext.data.ArrayReader(config)
  537.         }));
  538.     },
  539.     loadData : function(data, append){
  540.         if(this.expandData === true){
  541.             var r = [];
  542.             for(var i = 0, len = data.length; i < len; i++){
  543.                 r[r.length] = [data[i]];
  544.             }
  545.             data = r;
  546.         }
  547.         Ext.data.ArrayStore.superclass.loadData.call(this, data, append);
  548.     }
  549. });
  550. Ext.reg('arraystore', Ext.data.ArrayStore);
  551. // backwards compat
  552. Ext.data.SimpleStore = Ext.data.ArrayStore;
  553. Ext.reg('simplestore', Ext.data.SimpleStore);/**
  554.  * @class Ext.data.JsonStore
  555.  * @extends Ext.data.Store
  556.  * <p>Small helper class to make creating {@link Ext.data.Store}s from JSON data easier.
  557.  * A JsonStore will be automatically configured with a {@link Ext.data.JsonReader}.</p>
  558.  * <p>A store configuration would be something like:<pre><code>
  559. var store = new Ext.data.JsonStore({
  560.     // store configs
  561.     autoDestroy: true,
  562.     url: 'get-images.php',
  563.     storeId: 'myStore',
  564.     // reader configs
  565.     root: 'images',
  566.     idProperty: 'name',
  567.     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
  568. });
  569.  * </code></pre></p>
  570.  * <p>This store is configured to consume a returned object of the form:<pre><code>
  571. {
  572.     images: [
  573.         {name: 'Image one', url:'/GetImage.php?id=1', size:46.5, lastmod: new Date(2007, 10, 29)},
  574.         {name: 'Image Two', url:'/GetImage.php?id=2', size:43.2, lastmod: new Date(2007, 10, 30)}
  575.     ]
  576. }
  577.  * </code></pre>
  578.  * An object literal of this form could also be used as the {@link #data} config option.</p>
  579.  * <p><b>*Note:</b> Although not listed here, this class accepts all of the configuration options of
  580.  * <b>{@link Ext.data.JsonReader JsonReader}</b>.</p>
  581.  * @constructor
  582.  * @param {Object} config
  583.  * @xtype jsonstore
  584.  */
  585. Ext.data.JsonStore = Ext.extend(Ext.data.Store, {
  586.     /**
  587.      * @cfg {Ext.data.DataReader} reader @hide
  588.      */
  589.     constructor: function(config){
  590.         Ext.data.JsonStore.superclass.constructor.call(this, Ext.apply(config, {
  591.             reader: new Ext.data.JsonReader(config)
  592.         }));
  593.     }
  594. });
  595. Ext.reg('jsonstore', Ext.data.JsonStore);