/* 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.DataWriter
Ext.data.JsonWriter

Files

DataWriter extension for writing an array or single Ext.data.Record object(s) in preparation for executing a remote CRUD action.

\n
Defined By

Config options

Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.createRecord)

\n

Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.createRecord)

\n

Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.destroyRecord)

\n

Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.destroyRecord)

\n
Ext.data.JsonWriter
view source
: Boolean
true to JSON encode the\nhashed data into a standard HTTP parameter named after this\nReader's meta.root property which...

true 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.

\n\n\n

If set to false, the hashed data is JSON encoded, along with\nthe associated Ext.data.Store's baseParams, into the POST body.

\n\n\n

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\n

When 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\n

Defaults to: true

Ext.data.JsonWriter
view source
: Boolean
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\n Defaults ...

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\n

Defaults to false

\n

Defaults to: false

false by default. ...

false by default. Set true to have the DataWriter always write HTTP params as a list,\neven when acting upon a single record.

\n

Defaults to: false

Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.updateRecord

\n

Abstract method that should be implemented in all subclasses\n(e.g.: JsonWriter.updateRecord

\n
false by default. ...

false 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.

\n

Defaults to: false

Defined By

Methods

Ext.data.JsonWriter
view source
new( meta, recordType ) : Ext.data.JsonWriter
Create a new DataWriter ...

Create a new DataWriter

\n

Parameters

Returns

Overrides: Ext.data.DataWriter.constructor

( params, baseParams, action, rs )
Compiles a Store recordset into a data-format defined by an extension such as Ext.data.JsonWriter or Ext.data.XmlWrit...

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.

\n

Parameters

Ext.data.JsonWriter
view source
( rec ) : Objectprotected
Implements abstract Ext.data.DataWriter.createRecord ...

Implements abstract Ext.data.DataWriter.createRecord

\n

Parameters

Returns

  • Object
    \n
Ext.data.JsonWriter
view source
( rec ) : Objectprotected
Implements abstract Ext.data.DataWriter.destroyRecord ...

Implements abstract Ext.data.DataWriter.destroyRecord

\n

Parameters

Returns

  • Object
    \n
Ext.data.JsonWriter
view source
( Ajax, baseParams, data )
This method should not need to be called by application code, however it may be useful on occasion to\noverride it, or...

This 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\n

The provided implementation encodes the serialized data representing the Store's modified Records into the Ajax request's\nparams according to the encode setting.

\n\n

Parameters

  • Ajax : Object

    request params object to write into.

    \n
  • baseParams : Object

    as defined by Ext.data.Store.baseParams. The baseParms must be encoded by the extending class, eg: Ext.data.JsonWriter, Ext.data.XmlWriter.

    \n
  • data : Object/Object[]

    Data 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.

    \n

Overrides: Ext.data.DataWriter.render

( data ) : Object[]protected
Converts a Hashed Ext.data.Record to fields-array array suitable\nfor encoding to xml via XTemplate, eg:\n\n\n<tpl for...

Converts a Hashed Ext.data.Record to fields-array array suitable\nfor encoding to xml via XTemplate, eg:\n

\n\n
<tpl for=\".\"><{name}>{value}</{name}</tpl>
\n\n\n

\neg, non-phantom:\n

\n\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.

\n

Parameters

Returns

  • Object[]

    Array of attribute-objects.

    \n
( rec, config ) : Objectprotected
Converts a Record to a hash, taking into account the state of the Ext.data.Record along with configuration properties...

Converts 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

\n

Parameters

  • rec : Ext.data.Record

    The Record from which to create a hash.

    \n
  • config : Object

    NOT YET IMPLEMENTED. Will implement an exlude/only configuration for fine-control over which fields do/don't get rendered.

    \n

Returns

  • Object

    TODO Implement excludes/only configuration with 2nd param?

    \n
Ext.data.JsonWriter
view source
( rec ) : Objectprotected
Implements abstract Ext.data.DataWriter.updateRecord ...

Implements abstract Ext.data.DataWriter.updateRecord

\n

Parameters

Returns

  • Object
    \n
","superclasses":["Ext.data.DataWriter"],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"JsonWriter.html#Ext-data-JsonWriter","filename":"JsonWriter.js"}],"linenr":1,"members":{"property":[],"cfg":[{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"createRecord","id":"cfg-createRecord"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"destroyRecord","id":"cfg-destroyRecord"},{"tagname":"cfg","owner":"Ext.data.JsonWriter","meta":{},"name":"encode","id":"cfg-encode"},{"tagname":"cfg","owner":"Ext.data.JsonWriter","meta":{},"name":"encodeDelete","id":"cfg-encodeDelete"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"listful","id":"cfg-listful"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"updateRecord","id":"cfg-updateRecord"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"writeAllFields","id":"cfg-writeAllFields"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.data.JsonWriter","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.data.DataWriter","meta":{},"name":"apply","id":"method-apply"},{"tagname":"method","owner":"Ext.data.JsonWriter","meta":{"protected":true},"name":"createRecord","id":"method-createRecord"},{"tagname":"method","owner":"Ext.data.JsonWriter","meta":{"protected":true},"name":"destroyRecord","id":"method-destroyRecord"},{"tagname":"method","owner":"Ext.data.JsonWriter","meta":{},"name":"render","id":"method-render"},{"tagname":"method","owner":"Ext.data.DataWriter","meta":{"protected":true},"name":"toArray","id":"method-toArray"},{"tagname":"method","owner":"Ext.data.DataWriter","meta":{"protected":true},"name":"toHash","id":"method-toHash"},{"tagname":"method","owner":"Ext.data.JsonWriter","meta":{"protected":true},"name":"updateRecord","id":"method-updateRecord"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.data.JsonWriter","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.data.JsonWriter","mixins":[],"mixedInto":[]});