/* 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_DataReader({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":["Ext.data.JsonReader","Ext.data.XmlReader"],"extends":null,"uses":[],"html":"
Subclasses
Files
Abstract base class for reading structured data from a data source and converting\nit into an object containing Ext.data.Record objects and metadata for use\nby an Ext.data.Store. This class is intended to be extended and should not\nbe created directly. For existing implementations, see Ext.data.ArrayReader,\nExt.data.JsonReader and Ext.data.XmlReader.
\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\nThis DataReader's configured metadata as passed to the constructor.
\nThis DataReader's configured metadata as passed to the constructor.
\nCreate a new DataReader
\nMetadata configuration options (implementation-specific).
\nEither an Array of Field definition objects (which\nwill be passed to Ext.data.Record.create, or a Record\nconstructor created using Ext.data.Record.create.
\n\nAbstract 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
\nAbstract method overridden in DataReader extensions such as Ext.data.JsonReader and Ext.data.XmlReader
\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.
\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.
\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