-<!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.Types'>/**
+<!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-Types'>/**
</span> * @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
var st = Ext.data.SortTypes;
Ext.apply(Ext.data.Types, {
-<span id='Ext-data.Types-property-stripRe'> /**
+<span id='Ext-data-Types-property-stripRe'> /**
</span> * @type Regexp
* @property stripRe
* A regular expression for stripping non-numeric characters from a numeric value. Defaults to <tt>/[\$,%]/g</tt>.
*/
stripRe: /[\$,%]/g,
-<span id='Ext-data.Types-property-AUTO'> /**
+<span id='Ext-data-Types-property-AUTO'> /**
</span> * @type Object.
* @property AUTO
* This data type means that no conversion is applied to the raw data before it is placed into a Record.
type: 'auto'
},
-<span id='Ext-data.Types-property-STRING'> /**
+<span id='Ext-data-Types-property-STRING'> /**
</span> * @type Object.
* @property STRING
* This data type means that the raw data is converted into a String before it is placed into a Record.
type: 'string'
},
-<span id='Ext-data.Types-property-INT'> /**
+<span id='Ext-data-Types-property-INT'> /**
</span> * @type Object.
* @property INT
* This data type means that the raw data is converted into an integer before it is placed into a Record.
type: 'int'
},
-<span id='Ext-data.Types-property-FLOAT'> /**
+<span id='Ext-data-Types-property-FLOAT'> /**
</span> * @type Object.
* @property FLOAT
* This data type means that the raw data is converted into a number before it is placed into a Record.
type: 'float'
},
-<span id='Ext-data.Types-property-BOOL'> /**
+<span id='Ext-data-Types-property-BOOL'> /**
</span> * @type Object.
* @property BOOL
* <p>This data type means that the raw data is converted into a boolean before it is placed into
type: 'bool'
},
-<span id='Ext-data.Types-property-DATE'> /**
+<span id='Ext-data-Types-property-DATE'> /**
</span> * @type Object.
* @property DATE
* This data type means that the raw data is converted into a Date before it is placed into a Record.
});
Ext.apply(Ext.data.Types, {
-<span id='Ext-data.Types-property-BOOLEAN'> /**
+<span id='Ext-data-Types-property-BOOLEAN'> /**
</span> * @type Object.
* @property BOOLEAN
* <p>This data type means that the raw data is converted into a boolean before it is placed into
*/
BOOLEAN: this.BOOL,
-<span id='Ext-data.Types-property-INTEGER'> /**
+<span id='Ext-data-Types-property-INTEGER'> /**
</span> * @type Object.
* @property INTEGER
* This data type means that the raw data is converted into an integer before it is placed into a Record.
*/
INTEGER: this.INT,
-<span id='Ext-data.Types-property-NUMBER'> /**
+<span id='Ext-data-Types-property-NUMBER'> /**
</span> * @type Object.
* @property NUMBER
* This data type means that the raw data is converted into a number before it is placed into a Record.
NUMBER: this.FLOAT
});
});
-</pre></pre></body></html>
\ No newline at end of file
+</pre>
+</body>
+</html>