X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Writer.html diff --git a/docs/source/Writer.html b/docs/source/Writer.html index ef783850..523ba692 100644 --- a/docs/source/Writer.html +++ b/docs/source/Writer.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @author Ed Spencer
  * @class Ext.data.writer.Writer
  * @extends Object
@@ -22,14 +39,14 @@ Ext.define('Ext.data.writer.Writer', {
     alias: 'writer.base',
     alternateClassName: ['Ext.data.DataWriter', 'Ext.data.Writer'],
     
-    /**
+    /**
      * @cfg {Boolean} writeAllFields True to write all fields from the record to the server. If set to false it
      * will only send the fields that were modified. Defaults to <tt>true</tt>. Note that any fields that have
      * {@link Ext.data.Field#persist} set to false will still be ignored.
      */
     writeAllFields: true,
     
-    /**
+    /**
      * @cfg {String} nameProperty This property is used to read the key for each value that will be sent to the server.
      * For example:
      * <pre><code>
@@ -66,7 +83,7 @@ new Ext.data.writer.Writer({
         Ext.apply(this, config);
     },
 
-    /**
+    /**
      * Prepares a Proxy's Ext.data.Request object
      * @param {Ext.data.Request} request The request object
      * @return {Ext.data.Request} The modified request object
@@ -84,7 +101,7 @@ new Ext.data.writer.Writer({
         return this.writeRecords(request, data);
     },
 
-    /**
+    /**
      * Formats the data for each record before sending it to the server. This
      * method should be overridden to format the data in a way that differs from the default.
      * @param {Object} record The record that we are writing to the server.
@@ -127,4 +144,6 @@ new Ext.data.writer.Writer({
         return data;
     }
 });
-
\ No newline at end of file +
+ +