/* 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_JsonWriter({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.data.DataWriter","uses":[],"html":"
Hierarchy
Ext.data.DataWriterExt.data.JsonWriterFiles
DataWriter extension for writing an array or single Ext.data.Record object(s) in preparation for executing a remote CRUD action.
\nAbstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.createRecord)
\nAbstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.createRecord)
\nAbstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.destroyRecord)
\nAbstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.destroyRecord)
\ntrue to JSON encode the\nhashed data into a standard HTTP parameter named after this\nReader's meta.root
property which, by default is imported from the associated Reader. Defaults to true.
If set to false
, the hashed data is JSON encoded, along with\nthe associated Ext.data.Store's baseParams, into the POST body.
When using Ext.data.DirectProxy, set this to false since Ext.Direct.JsonProvider will perform\nits own json-encoding. In addition, if you're using Ext.data.HttpProxy, setting to false\nwill cause HttpProxy to transmit data using the jsonData configuration-params of Ext.Ajax.request\ninstead of params.
\n\n\nWhen using a Ext.data.Store.restful Store, some serverside frameworks are\ntuned to expect data through the jsonData mechanism. In those cases, one will want to set encode: false, as in\nlet the lower-level connection object (eg: Ext.Ajax) do the encoding.
\n\nDefaults to: true
False to send only the id to the server on delete, true to encode it in an object\nliteral, eg:
\n\n{id: 1}\n
\n\n\nDefaults to false
\nDefaults to: false
false by default. Set true to have the DataWriter always write HTTP params as a list,\neven when acting upon a single record.
\nDefaults to: false
Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.updateRecord
\nAbstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.updateRecord
\nfalse by default. Set true to have DataWriter return ALL fields of a modified\nrecord -- not just those that changed.\nfalse to have DataWriter only request modified fields from a record.
\nDefaults to: false
Create a new DataWriter
\nMetadata configuration options (implementation-specific)
\nEither an Array of field definition objects as specified\nin Ext.data.Record.create, or an Ext.data.Record object created\nusing Ext.data.Record.create.
\nOverrides: Ext.data.DataWriter.constructor
Compiles a Store recordset into a data-format defined by an extension such as Ext.data.JsonWriter or Ext.data.XmlWriter in preparation for a server-write action. The first two params are similar similar in nature to Ext.apply,\nWhere the first parameter is the receiver of paramaters and the second, baseParams, the source.
\nThe request-params receiver.
\nas defined by Ext.data.Store.baseParams. The baseParms must be encoded by the extending class, eg: Ext.data.JsonWriter, Ext.data.XmlWriter.
\nThe recordset to write, the subject(s) of the write action.
\nImplements abstract Ext.data.DataWriter.createRecord
\nImplements abstract Ext.data.DataWriter.destroyRecord
\nThis method should not need to be called by application code, however it may be useful on occasion to\noverride it, or augment it with an interceptor or sequence.
\n\n\nThe provided implementation encodes the serialized data representing the Store's modified Records into the Ajax request's\nparams
according to the encode
setting.
request params object to write into.
\nas defined by Ext.data.Store.baseParams. The baseParms must be encoded by the extending class, eg: Ext.data.JsonWriter, Ext.data.XmlWriter.
\nData object representing the serialized modified records from the Store. May be either a single object,\nor an Array of objects - user implementations must handle both cases.
\nOverrides: Ext.data.DataWriter.render
Converts a Hashed Ext.data.Record to fields-array array suitable\nfor encoding to xml via XTemplate, eg:\n
<tpl for=\".\"><{name}>{value}</{name}</tpl>\n\n\n
\neg, non-phantom:\n
{id: 1, first: 'foo', last: 'bar'} --> [{name: 'id', value: 1}, {name: 'first', value: 'foo'}, {name: 'last', value: 'bar'}]\n\n\n
\nPhantom records will have had their idProperty omitted in toHash if determined to be auto-generated.\nNon AUTOINCREMENT pks should have been protected.
\nHashed by Ext.data.DataWriter.toHash
\nArray of attribute-objects.
\nConverts a Record to a hash, taking into account the state of the Ext.data.Record along with configuration properties\nrelated to its rendering, such as writeAllFields, phantom, getChanges and\nidProperty
\nThe Record from which to create a hash.
\nNOT YET IMPLEMENTED. Will implement an exlude/only configuration for fine-control over which fields do/don't get rendered.
\nTODO Implement excludes/only configuration with 2nd param?
\nImplements abstract Ext.data.DataWriter.updateRecord
\n