/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_data_JsonReader({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":["Ext.data.ArrayReader"],"extends":"Ext.data.DataReader","uses":[],"html":"
Hierarchy
Ext.data.DataReaderExt.data.JsonReaderSubclasses
Files
Data reader class to create an Array of Ext.data.Record objects\nfrom a JSON packet based on mappings in a provided Ext.data.Record\nconstructor.
\n\n\nExample code:
\n\n\nvar myReader = new Ext.data.JsonReader({\n // metadata configuration options:\n idProperty: 'id'\n root: 'rows',\n totalProperty: 'results',\n Ext.data.DataReader.messageProperty: \"msg\" // The element within the response that provides a user-feedback message (optional)\n\n // the fields config option will internally create an Ext.data.Record\n // constructor that provides mapping for reading the record data objects\n fields: [\n // map Record's 'firstname' field to data object's key of same name\n {name: 'name', mapping: 'firstname'},\n // map Record's 'job' field to data object's 'occupation' key\n {name: 'job', mapping: 'occupation'}\n ]\n});\n
\n\n\nThis would consume a JSON data object of the form:
\n\n\n{\n results: 2000, // Reader's configured totalProperty\n rows: [ // Reader's configured root\n // record data objects:\n { id: 1, firstname: 'Bill', occupation: 'Gardener' },\n { id: 2, firstname: 'Ben' , occupation: 'Horticulturalist' },\n ...\n ]\n}\n
\n\n\nAutomatic configuration using metaData
\n\n\nIt is possible to change a JsonReader's metadata at any time by including\na metaData property in the JSON data object. If the JSON data\nobject has a metaData property, a Store\nobject using this Reader will reconfigure itself to use the newly provided\nfield definition and fire its metachange\nevent. The metachange event handler may interrogate the metaData\nproperty to perform any configuration required.
\n\n\nNote that reconfiguring a Store potentially invalidates objects which may\nrefer to Fields or Records which no longer exist.
\n\n\nTo use this facility you would create the JsonReader like this:
\n\n\nvar myReader = new Ext.data.JsonReader();\n
\n\n\nThe first data packet from the server would configure the reader by\ncontaining a metaData property and the data. For\nexample, the JSON data object might take the form:
\n\n\n{\n metaData: {\n \"idProperty\": \"id\",\n \"root\": \"rows\",\n \"totalProperty\": \"results\"\n \"successProperty\": \"success\",\n \"fields\": [\n {\"name\": \"name\"},\n {\"name\": \"job\", \"mapping\": \"occupation\"}\n ],\n // used by store to set its sortInfo\n \"sortInfo\":{\n \"field\": \"name\",\n \"direction\": \"ASC\"\n },\n // paging data (if applicable)\n \"start\": 0,\n \"limit\": 2,\n // custom property\n \"foo\": \"bar\"\n },\n // Reader's configured successProperty\n \"success\": true,\n // Reader's configured totalProperty\n \"results\": 2000,\n // Reader's configured root\n // (this data simulates 2 results per page)\n \"rows\": [ // *Note: this must be an Array\n { \"id\": 1, \"name\": \"Bill\", \"occupation\": \"Gardener\" },\n { \"id\": 2, \"name\": \"Ben\", \"occupation\": \"Horticulturalist\" }\n ]\n}\n
\n\n\nThe metaData property in the JSON data object should contain:
\n\n\nEither an Array of Field definition objects (which\nwill be passed to Ext.data.Record.create, or a Record\nconstructor created from Ext.data.Record.create.
\n\n[id] Name of the property within a row object\nthat contains a record identifier value. Defaults to id
\n[undefined] Optional name of a property within a server-response that represents a user-feedback message.
\n[undefined] Optional name of a property within a server-response that represents a user-feedback message.
\n[undefined] Required. The name of the property\nwhich contains the Array of row objects. Defaults to undefined.\nAn exception will be thrown if the root property is undefined. The data\npacket value for this property should be an empty array to clear the data\nor show no data.
\n[success] Name of the property from which to\nretrieve the success attribute. Defaults to success. See\nExt.data.DataProxy.exception\nfor additional information.
\n[total] Name of the property from which to\nretrieve the total number of records in the dataset. This is only needed\nif the whole dataset is not passed in one go, but is being paged from\nthe remote server. Defaults to total.
\nAfter any data loads, the raw JSON data is available for further custom processing. If no data is\nloaded or there is a load exception this property will be undefined.
\nThis JsonReader's metadata as passed to the constructor, or as passed in\nthe last data packet's metaData property.
\nThis JsonReader's metadata as passed to the constructor, or as passed in\nthe last data packet's metaData property.
\nOverrides: Ext.data.DataReader.meta
Create a new JsonReader
\nMetadata configuration options.
\nEither an Array of Field definition objects (which\nwill be passed to Ext.data.Record.create, or a Record\nconstructor created from Ext.data.Record.create.
\n\nOverrides: Ext.data.DataReader.constructor
Abstract method, overridden in DataReader extensions such as Ext.data.JsonReader and Ext.data.XmlReader
\nreturns extracted, type-cast rows of data. Iterates to call extractValues for each row
\nfrom server response
\n[false] Set true to return instances of Ext.data.Record
\ntype-casts a single row of raw-data from server
\nOverrides: Ext.data.DataReader.extractValues
Abstract method created in extension's buildExtractors impl.
\nAbstract method created in extension's buildExtractors impl.
\nAbstract method created in extension's buildExtractors impl.
\nAbstract method created in extension's buildExtractors impl.
\nAbstract method created in extension's buildExtractors impl.
\nReturns true if the supplied data-hash looks and quacks like data. Checks to see if it has a key\ncorresponding to idProperty defined in your DataReader config containing non-empty pk.
\nThis method is only used by a DataProxy which has retrieved data from a remote server.
\nThe XHR object which contains the JSON data in its responseText.
\ndata A data block which is used by an Ext.data.Store object as\na cache of Ext.data.Records.
\nCreate a data block containing Ext.data.Records from a JSON object.
\nAn object which contains an Array of row objects in the property specified\nin the config as 'root, and optionally a property, specified in the config as 'totalProperty'\nwhich contains the total size of the dataset.
\ndata A data block which is used by an Ext.data.Store object as\na cache of Ext.data.Records.
\nUsed for un-phantoming a record after a successful database insert. Sets the records pk along with new data from server.\nYou must return at least the database pk using the idProperty defined in your DataReader configuration. The incoming\ndata from server will be merged with the data in the local record.\nIn addition, you must return record-data from the server in the same order received.\nWill perform a commit as well, un-marking dirty-fields. Store's \"update\" event will be suppressed.
\nThe phantom record to be realized.
\nThe new record data to apply. Must include the primary-key from database defined in idProperty field.
\nUsed for updating a non-phantom or \"real\" record's data with fresh data from server after remote-save.\nIf returning data from multiple-records after a batch-update, you must return record-data from the server in\nthe same order received. Will perform a commit as well, un-marking dirty-fields. Store's \"update\" event will be\nsuppressed as the record receives fresh new data-hash
\n