X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Types.html diff --git a/docs/source/Types.html b/docs/source/Types.html index 54fed8f9..c97a629c 100644 --- a/docs/source/Types.html +++ b/docs/source/Types.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.data.Types
  * <p>This is s static class containing the system-supplied data types which may be given to a {@link Ext.data.Field Field}.<p/>
  * <p>The properties in this class are used as type indicators in the {@link Ext.data.Field Field} class, so to
@@ -55,7 +72,7 @@ Ext.define('Ext.data.Types', {
     var st = Ext.data.SortTypes;
     
     Ext.apply(Ext.data.Types, {
-        /**
+        /**
          * @type Regexp
          * @property stripRe
          * A regular expression for stripping non-numeric characters from a numeric value. Defaults to <tt>/[\$,%]/g</tt>.
@@ -63,7 +80,7 @@ Ext.define('Ext.data.Types', {
          */
         stripRe: /[\$,%]/g,
         
-        /**
+        /**
          * @type Object.
          * @property AUTO
          * This data type means that no conversion is applied to the raw data before it is placed into a Record.
@@ -76,7 +93,7 @@ Ext.define('Ext.data.Types', {
             type: 'auto'
         },
 
-        /**
+        /**
          * @type Object.
          * @property STRING
          * This data type means that the raw data is converted into a String before it is placed into a Record.
@@ -90,7 +107,7 @@ Ext.define('Ext.data.Types', {
             type: 'string'
         },
 
-        /**
+        /**
          * @type Object.
          * @property INT
          * This data type means that the raw data is converted into an integer before it is placed into a Record.
@@ -105,7 +122,7 @@ Ext.define('Ext.data.Types', {
             type: 'int'
         },
         
-        /**
+        /**
          * @type Object.
          * @property FLOAT
          * This data type means that the raw data is converted into a number before it is placed into a Record.
@@ -120,7 +137,7 @@ Ext.define('Ext.data.Types', {
             type: 'float'
         },
         
-        /**
+        /**
          * @type Object.
          * @property BOOL
          * <p>This data type means that the raw data is converted into a boolean before it is placed into
@@ -138,7 +155,7 @@ Ext.define('Ext.data.Types', {
             type: 'bool'
         },
         
-        /**
+        /**
          * @type Object.
          * @property DATE
          * This data type means that the raw data is converted into a Date before it is placed into a Record.
@@ -173,7 +190,7 @@ Ext.define('Ext.data.Types', {
     });
     
     Ext.apply(Ext.data.Types, {
-        /**
+        /**
          * @type Object.
          * @property BOOLEAN
          * <p>This data type means that the raw data is converted into a boolean before it is placed into
@@ -182,7 +199,7 @@ Ext.define('Ext.data.Types', {
          */
         BOOLEAN: this.BOOL,
         
-        /**
+        /**
          * @type Object.
          * @property INTEGER
          * This data type means that the raw data is converted into an integer before it is placed into a Record.
@@ -190,7 +207,7 @@ Ext.define('Ext.data.Types', {
          */
         INTEGER: this.INT,
         
-        /**
+        /**
          * @type Object.
          * @property NUMBER
          * This data type means that the raw data is converted into a number before it is placed into a Record.
@@ -199,4 +216,6 @@ Ext.define('Ext.data.Types', {
         NUMBER: this.FLOAT    
     });
 });
-
\ No newline at end of file +
+ +