Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / source / Xml2.html
index 8bb4983..d8b8295 100644 (file)
@@ -1,9 +1,31 @@
-<!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-data.writer.Xml'>/**
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <title>The source code</title>
+  <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../prettify/prettify.js"></script>
+  <style type="text/css">
+    .highlight { display: block; background-color: #ddd; }
+  </style>
+  <script type="text/javascript">
+    function highlight() {
+      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
+    }
+  </script>
+</head>
+<body onload="prettyPrint(); highlight();">
+  <pre class="prettyprint lang-js"><span id='Ext-data-writer-Xml'>/**
 </span> * @author Ed Spencer
  * @class Ext.data.writer.Xml
  * @extends Ext.data.writer.Writer
- * 
- * &lt;p&gt;Writer that outputs model data in XML format&lt;/p&gt;
+
+This class is used to write {@link Ext.data.Model} data to the server in an XML format.
+The {@link #documentRoot} property is used to specify the root element in the XML document.
+The {@link #record} option is used to specify the element name for each record that will make
+up the XML document.
+
+ * @markdown
  */
 Ext.define('Ext.data.writer.Xml', {
     
@@ -16,26 +38,26 @@ Ext.define('Ext.data.writer.Xml', {
     
     /* End Definitions */
     
-<span id='Ext-data.writer.Xml-cfg-documentRoot'>    /**
+<span id='Ext-data-writer-Xml-cfg-documentRoot'>    /**
 </span>     * @cfg {String} documentRoot The name of the root element of the document. Defaults to &lt;tt&gt;'xmlData'&lt;/tt&gt;.
      * If there is more than 1 record and the root is not specified, the default document root will still be used
      * to ensure a valid XML document is created.
      */
     documentRoot: 'xmlData',
     
-<span id='Ext-data.writer.Xml-cfg-defaultDocumentRoot'>    /**
+<span id='Ext-data-writer-Xml-cfg-defaultDocumentRoot'>    /**
 </span>     * @cfg {String} defaultDocumentRoot The root to be used if {@link #documentRoot} is empty and a root is required
      * to form a valid XML document.
      */
     defaultDocumentRoot: 'xmlData',
 
-<span id='Ext-data.writer.Xml-cfg-header'>    /**
+<span id='Ext-data-writer-Xml-cfg-header'>    /**
 </span>     * @cfg {String} header A header to use in the XML document (such as setting the encoding or version).
      * Defaults to &lt;tt&gt;''&lt;/tt&gt;.
      */
     header: '',
 
-<span id='Ext-data.writer.Xml-cfg-record'>    /**
+<span id='Ext-data-writer-Xml-cfg-record'>    /**
 </span>     * @cfg {String} record The name of the node to use for each record. Defaults to &lt;tt&gt;'record'&lt;/tt&gt;.
      */
     record: 'record',
@@ -82,4 +104,6 @@ Ext.define('Ext.data.writer.Xml', {
         return request;
     }
 });
-</pre></pre></body></html>
\ No newline at end of file
+</pre>
+</body>
+</html>