X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Json.html diff --git a/docs/source/Json.html b/docs/source/Json.html index e7323f6d..f1d1f013 100644 --- a/docs/source/Json.html +++ b/docs/source/Json.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @author Ed Spencer
  * @class Ext.data.reader.Json
  * @extends Ext.data.reader.Reader
@@ -164,12 +181,12 @@ Ext.define('Ext.data.reader.Json', {
     
     root: '',
     
-    /**
+    /**
      * @cfg {String} record The optional location within the JSON response that the record data itself can be found at.
      * See the JsonReader intro docs for more details. This is not often needed and defaults to undefined.
      */
     
-    /**
+    /**
      * @cfg {Boolean} useSimpleAccessors True to ensure that field names/mappings are treated as literals when
      * reading values. Defalts to <tt>false</tt>.
      * For example, by default, using the mapping "foo.bar.baz" will try and read a property foo from the root, then a property bar
@@ -178,7 +195,7 @@ Ext.define('Ext.data.reader.Json', {
      */
     useSimpleAccessors: false,
     
-    /**
+    /**
      * Reads a JSON object and returns a ResultSet. Uses the internal getTotal and getSuccess extractors to
      * retrieve meta data from the response, and extractData to turn the JSON data into model instances.
      * @param {Object} data The raw JSON data
@@ -190,7 +207,7 @@ Ext.define('Ext.data.reader.Json', {
             this.onMetaChange(data.metaData);
         }
 
-        /**
+        /**
          * DEPRECATED - will be removed in Ext JS 5.0. This is just a copy of this.rawData - use that instead
          * @property jsonData
          * @type Mixed
@@ -236,7 +253,7 @@ Ext.define('Ext.data.reader.Json', {
         }
     },
     
-    /**
+    /**
      * @private
      * We're just preparing the data for the superclass by pulling out the record objects we want. If a {@link #record}
      * was specified we have to pull those out of the larger JSON object, which is most of what this function is doing
@@ -260,7 +277,7 @@ Ext.define('Ext.data.reader.Json', {
         return this.callParent([data]);
     },
 
-    /**
+    /**
      * @private
      * Returns an accessor function for the given property string. Gives support for properties such as the following:
      * 'someProperty'
@@ -289,4 +306,6 @@ Ext.define('Ext.data.reader.Json', {
             };
         };
     }()
-});
\ No newline at end of file +});
+ +