/* 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_DataWriter({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":["Ext.data.JsonWriter","Ext.data.XmlWriter"],"extends":null,"uses":[],"html":"
Subclasses
Files
Ext.data.DataWriter facilitates create, update, and destroy actions between\nan Ext.data.Store and a server-side framework. A Writer enabled Store will\nautomatically manage the Ajax requests to perform CRUD actions on a Store.
\n\n\nExt.data.DataWriter is an abstract base class which is intended to be extended\nand should not be created directly. For existing implementations, see\nExt.data.JsonWriter.
\n\n\nCreating a writer is simple:
\n\n\nvar writer = new Ext.data.JsonWriter({\n encode: false // <--- false causes data to be printed to jsonData config-property of Ext.Ajax#reqeust\n});\n
\n\n\nSame old JsonReader as Ext-2.x:
var reader = new Ext.data.JsonReader({idProperty: 'id'}, [{name: 'first'}, {name: 'last'}, {name: 'email'}]);\n
\n\n\n\n\nThe proxy for a writer enabled store can be configured with a simple url
:
// Create a standard HttpProxy instance.\nvar proxy = new Ext.data.HttpProxy({\n url: 'app.php/users' // <--- Supports \"provides\"-type urls, such as '/users.json', '/products.xml' (Hello Rails/Merb)\n});\n
\n\n\nFor finer grained control, the proxy may also be configured with an API
:
// Maximum flexibility with the API-configuration\nvar proxy = new Ext.data.HttpProxy({\n api: {\n read : 'app.php/users/read',\n create : 'app.php/users/create',\n update : 'app.php/users/update',\n destroy : { // <--- Supports object-syntax as well\n url: 'app.php/users/destroy',\n method: \"DELETE\"\n }\n }\n});\n
\n\n\nPulling it all together into a Writer-enabled Store:
\n\n\nvar store = new Ext.data.Store({\n proxy: proxy,\n reader: reader,\n writer: writer,\n autoLoad: true,\n autoSave: true // -- Cell-level updates.\n});\n
\n\n\nInitiating write-actions automatically, using the existing Ext2.0 Store/Record API:
\n\n\nvar rec = store.getAt(0);\nrec.set('email', 'foo@bar.com'); // <--- Immediately initiates an UPDATE action through configured proxy.\n\nstore.remove(rec); // <---- Immediately initiates a DESTROY action through configured proxy.\n
\n\n\nFor record/batch updates, use the Store-configuration autoSave:false
\n\n\nvar store = new Ext.data.Store({\n proxy: proxy,\n reader: reader,\n writer: writer,\n autoLoad: true,\n autoSave: false // -- disable cell-updates\n});\n\nvar urec = store.getAt(0);\nurec.set('email', 'foo@bar.com');\n\nvar drec = store.getAt(1);\nstore.remove(drec);\n\n// Push the button!\nstore.save();\n
\n\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)
\nfalse 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.
\nCompiles 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.
\nabstract method meant to be overridden by all DataWriter extensions. It's the extension's job to apply the \"data\" to the \"params\".\nThe data-object provided to render is populated with data according to the meta-info defined in the user's DataReader config,
\n[Ext.data.Api.actions.create|read|update|destroy]
\nStore recordset
\nHttp params to be sent to server.
\nobject populated according to DataReader meta-data.
\nConverts 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?
\n