/* 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_XmlWriter({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.data.DataWriter","uses":[],"html":"
Hierarchy
Ext.data.DataWriterExt.data.XmlWriterFiles
DataWriter extension for writing an array or single Ext.data.Record object(s) in preparation for executing a remote CRUD action via XML.\nXmlWriter uses an instance of Ext.XTemplate for maximum flexibility in defining your own custom XML schema if the default schema is not appropriate for your needs.\nSee the tpl configuration-property.
\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)
\n[xrequest] (Optional) The name of the XML document root-node. Note:\nthis parameter is required only when sending extra baseParams to the server\nduring a write-request -- if no baseParams are set, the Ext.data.XmlReader.record meta-property can\nsuffice as the XML document root-node for write-actions involving just a single record. For requests\ninvolving multiple records and NO baseParams, the root property can\nact as the XML document root.
\nDefaults to: 'xrequest'
[false] Set to true to force XML documents having a root-node as defined\nby documentRoot, even with no baseParams defined.
\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
[records] The name of the containing element which will contain the nodes of an write-action involving multiple records. Each\nxml-record written to the server will be wrapped in an element named after Ext.data.XmlReader.record property.\neg:\n
<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<user><first>Barney</first></user>\n\n\n\n
However, when multiple records are written in a batch-operation, these records must be wrapped in a containing\nElement.\neg:\n
<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n <records>\n <first>Barney</first></user>\n <records><first>Barney</first></user>\n </records>\n\n\n\n
Defaults to records. Do not confuse the nature of this property with that of documentRoot
\nDefaults to: 'records'
The XML template used to render write-actions to your server.
\n\nOne can easily provide his/her own custom template-definition if the default does not suffice.
\n\n\nDefaults to:
\n\n\n<?xml version=\"{version}\" encoding=\"{encoding}\"?>\n <tpl if=\"documentRoot\"><{documentRoot}>\n <tpl for=\"baseParams\">\n <tpl for=\".\">\n <{name}>{value}</{name}>\n </tpl>\n </tpl>\n <tpl if=\"records.length > 1\"><{root}>',\n <tpl for=\"records\">\n <{parent.record}>\n <tpl for=\".\">\n <{name}>{value}</{name}>\n </tpl>\n </{parent.record}>\n </tpl>\n <tpl if=\"records.length > 1\"></{root}></tpl>\n <tpl if=\"documentRoot\"></{documentRoot}></tpl>\n\n\n\n\n\n
Templates will be called with the following API
\n\n\nAbstract 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
[ISO-8859-15] The encoding written to header of xml documents.\n
<?xml version=\"1.0\" encoding=\"ISO-8859-15\"?>\n\n\n\n
Defaults to: 'ISO-8859-15'
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.
\ncreateRecord
\nArray of name:value pairs for attributes of the Ext.data.Record. See Ext.data.DataWriter.toHash.
\ndestroyRecord
\nArray containing a attribute-object (name/value pair) representing the idProperty.
\nXmlWriter implementation of the final stage of a write action.
\nTransport-proxy's (eg: Ext.Ajax.request) params-object to write-to.
\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 compiled Store-recordset.
\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?
\nupdateRecord
\nArray of {name:value} pairs for attributes of the Ext.data.Record. See Ext.data.DataWriter.toHash.
\n