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

Files

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.

\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.XmlWriter
view source
: String
[xrequest] (Optional) The name of the XML document root-node. ...

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

\n

Defaults to: 'xrequest'

Ext.data.XmlWriter
view source
: Boolean
[false] Set to true to force XML documents having a root-node as defined\nby documentRoot, even with no baseParams def...

[false] Set to true to force XML documents having a root-node as defined\nby documentRoot, even with no baseParams defined.

\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

Ext.data.XmlWriter
view source
: String
[records] The name of the containing element which will contain the nodes of an write-action involving multiple records. ...

[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

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

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

\n

Defaults to: 'records'

Ext.data.XmlWriter
view source
: String/Ext.XTemplate
The XML template used to render write-actions to your server. ...

The XML template used to render write-actions to your server.

\n\n

One can easily provide his/her own custom template-definition if the default does not suffice.

\n\n\n

Defaults to:

\n\n\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\n
    \n
  • {String} version [1.0] The xml version.
  • \n
  • {String} encoding [ISO-8859-15] The xml encoding.
  • \n
  • {String/false} documentRoot The XML document root-node name or false if not required. See documentRoot and forceDocumentRoot.
  • \n
  • {String} record The meta-data parameter defined on your Ext.data.XmlReader.record configuration represents the name of the xml-tag containing each record.
  • \n
  • {String} root The meta-data parameter defined by root configuration-parameter. Represents the name of the xml root-tag when sending multiple records to the server.
  • \n
  • {Array} records The records being sent to the server, ie: the subject of the write-action being performed. The records parameter will be always be an array, even when only a single record is being acted upon.\n Each item within the records array will contain an array of field objects having the following properties:\n
      \n
    • {String} name The field-name of the record as defined by your Ext.data.Record definition. The \"mapping\" property will be used, otherwise it will match the \"name\" property. Use this parameter to define the XML tag-name of the property.
    • \n
    • {Mixed} value The record value of the field enclosed within XML tags specified by name property above.
    • \n
  • \n
  • {Array} baseParams. The baseParams as defined upon Ext.data.Store.baseParams. Note that the baseParams have been converted into an array of [{name : \"foo\", value: \"bar\"}, ...] pairs in the same manner as the records parameter above. See documentRoot and forceDocumentRoot.
  • \n
\n\n

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

Ext.data.XmlWriter
view source
: String
[ISO-8859-15] The encoding written to header of xml documents. ...

[ISO-8859-15] The encoding written to header of xml documents.\n

\n\n
<?xml version=\"1.0\" encoding=\"ISO-8859-15\"?>
\n\n\n

\n

Defaults to: 'ISO-8859-15'

Ext.data.XmlWriter
view source
: String
[1.0] The version written to header of xml documents. ...

[1.0] The version written to header of xml documents.\n

\n\n
<?xml version=\"1.0\" encoding=\"ISO-8859-15\"?>
\n\n\n

\n

Defaults to: '1.0'

Defined By

Methods

Create a new DataWriter ...

Create a new DataWriter

\n

Parameters

Returns

( 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.XmlWriter
view source
( rec ) : Arrayprotected
createRecord ...

createRecord

\n

Parameters

Returns

Ext.data.XmlWriter
view source
( rec ) : Arrayprotected
destroyRecord ...

destroyRecord

\n

Parameters

Returns

  • Array

    Array containing a attribute-object (name/value pair) representing the idProperty.

    \n
Ext.data.XmlWriter
view source
( params, baseParams, data )
XmlWriter implementation of the final stage of a write action. ...

XmlWriter implementation of the final stage of a write action.

\n

Parameters

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.XmlWriter
view source
( rec ) : Arrayprotected
updateRecord ...

updateRecord

\n

Parameters

Returns

","superclasses":["Ext.data.DataWriter"],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"XmlWriter.html#Ext-data-XmlWriter","filename":"XmlWriter.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.XmlWriter","meta":{},"name":"documentRoot","id":"cfg-documentRoot"},{"tagname":"cfg","owner":"Ext.data.XmlWriter","meta":{},"name":"forceDocumentRoot","id":"cfg-forceDocumentRoot"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"listful","id":"cfg-listful"},{"tagname":"cfg","owner":"Ext.data.XmlWriter","meta":{},"name":"root","id":"cfg-root"},{"tagname":"cfg","owner":"Ext.data.XmlWriter","meta":{},"name":"tpl","id":"cfg-tpl"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"updateRecord","id":"cfg-updateRecord"},{"tagname":"cfg","owner":"Ext.data.DataWriter","meta":{},"name":"writeAllFields","id":"cfg-writeAllFields"},{"tagname":"cfg","owner":"Ext.data.XmlWriter","meta":{},"name":"xmlEncoding","id":"cfg-xmlEncoding"},{"tagname":"cfg","owner":"Ext.data.XmlWriter","meta":{},"name":"xmlVersion","id":"cfg-xmlVersion"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.data.DataWriter","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.data.DataWriter","meta":{},"name":"apply","id":"method-apply"},{"tagname":"method","owner":"Ext.data.XmlWriter","meta":{"protected":true},"name":"createRecord","id":"method-createRecord"},{"tagname":"method","owner":"Ext.data.XmlWriter","meta":{"protected":true},"name":"destroyRecord","id":"method-destroyRecord"},{"tagname":"method","owner":"Ext.data.XmlWriter","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.XmlWriter","meta":{"protected":true},"name":"updateRecord","id":"method-updateRecord"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.data.XmlWriter","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.data.XmlWriter","mixins":[],"mixedInto":[]});