|
| allowBlank : BooleanUsed for validating a record, defaults to true.
+An empty value here will cause Ext.data.Record.isValid
+to evaluate to... | Field |
| convert : FunctionA function which converts the value provided by the Reader into an object that will be stored
+to evaluate to false . | Field |
| convert : FunctionA function which converts the value provided by the Reader into an object that will be stored
in the Record. It is pa... A function which converts the value provided by the Reader into an object that will be stored
in the Record. It is passed the following parameters:
- v : Mixed
The data value as read by the Reader, if undefined will use
-the configured defaultValue.
+the configured defaultValue .
rec : MixedThe data object containing the row as read by the Reader.
Depending on the Reader type, this could be an Array ( ArrayReader), an object
( JsonReader), or an XML element ( XMLReader).
@@ -57,13 +57,14 @@ Depending on the Reader type, this could be an Array ( Field |
| dateFormat : StringA format string for the Date.parseDate function, or "timestamp" if the
-value provided by the Reader is a UNIX timesta... A format string for the Date.parseDate function, or "timestamp" if the
+]; | Field |
| dateFormat : String(Optional) Used when converting received data into a Date when the type is specified as "date".
+A format string for t... (Optional) Used when converting received data into a Date when the type is specified as "date" .
+ A format string for the Date.parseDate function, or "timestamp" if the
value provided by the Reader is a UNIX timestamp, or "time" if the value provided by the Reader is a
-javascript millisecond timestamp. | Field |
| defaultValue : MixedThe default value used when a Record is being created by a Reader
+javascript millisecond timestamp. See Date | Field |
| defaultValue : MixedThe default value used when a Record is being created by a Reader
when the item referenced by the mapping does not ex... The default value used when a Record is being created by a Reader
-when the item referenced by the mapping does not exist in the data
-object (i.e. undefined). (defaults to "") | Field |
| mapping : String/Number(Optional) A path expression for use by the Ext.data.DataReader implementation
+when the item referenced by the mapping does not exist in the data
+object (i.e. undefined). (defaults to "") | Field |
| mapping : String/Number(Optional) A path expression for use by the Ext.data.DataReader implementation
that is creating the Record to extract... (Optional) A path expression for use by the Ext.data.DataReader implementation
that is creating the Record to extract the Field value from the data object.
If the path expression is the same as the field name, the mapping may be omitted.
@@ -78,12 +79,12 @@ of the field's value. Defaults to the field specification's Array position.
If a more complex value extraction strategy is required, then configure the Field with a convert
function. This is passed the whole row object, and may interrogate it in whatever way is necessary in order to
-return the desired data. | Field |
| name : StringThe name by which the field is referenced within the Record. This is referenced by, for example,
+return the desired data. | Field |
| name : StringThe name by which the field is referenced within the Record. This is referenced by, for example,
the dataIndex proper... The name by which the field is referenced within the Record. This is referenced by, for example,
-the dataIndex property in column definition objects passed to Ext.grid.ColumnModel.
- Note: In the simplest case, if no properties other than name are required, a field
-definition may consist of just a String for the field name. | Field |
| sortDir : String Initial direction to sort ("ASC" or "DESC"). Defaults to
-"ASC". | Field |
| sortType : FunctionA function which converts a Field's value to a comparable value in order to ensure
+the dataIndex property in column definition objects passed to Ext.grid.ColumnModel.
+ Note: In the simplest case, if no properties other than name are required, a field
+definition may consist of just a String for the field name. | Field |
| sortDir : String Initial direction to sort ("ASC" or "DESC" ). Defaults to
+"ASC" . | Field |
| sortType : FunctionA function which converts a Field's value to a comparable value in order to ensure
correct sort ordering. Predefined ... A function which converts a Field's value to a comparable value in order to ensure
correct sort ordering. Predefined functions are provided in Ext.data.SortTypes. A custom
sort example: // current sort after sort we want
@@ -100,14 +101,17 @@ sortType: function(value) {
case 'second': return 2;
default: return 3;
}
-}
| Field |
| type : StringThe data type for conversion to displayable value if convert
-has not been specified. Possible values are
-<div class="... The data type for conversion to displayable value if convert
-has not been specified. Possible values are
+} | Field |
| type : MixedThe data type for automatic conversion from received data to the stored value if convert
+has not been specified. This... The data type for automatic conversion from received data to the stored value if convert
+has not been specified. This may be specified as a string value. Possible values are
- auto (Default, implies no conversion)
- string
- int
- float
- boolean
-- date
| Field |