X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/output/Ext.data.SortTypes.js diff --git a/docs/output/Ext.data.SortTypes.js b/docs/output/Ext.data.SortTypes.js new file mode 100644 index 00000000..6e9754eb --- /dev/null +++ b/docs/output/Ext.data.SortTypes.js @@ -0,0 +1,238 @@ +Ext.data.JsonP.Ext_data_SortTypes({ + "tagname": "class", + "name": "Ext.data.SortTypes", + "doc": "

This class defines a series of static methods that are used on a\nExt.data.Field for performing sorting. The methods cast the\nunderlying values into a data type that is appropriate for sorting on\nthat particular field. If a Ext.data.Field.type is specified,\nthe sortType will be set to a sane default if the sortType is not\nexplicitly defined on the field. The sortType will make any necessary\nmodifications to the value and return it.

\n\n\n\n\n

\nIt is also possible to create a custom sortType that can be used throughout\nan application.\n

Ext.apply(Ext.data.SortTypes, {\n    asPerson: function(person){\n        // expects an object with a first and last name property\n        return person.lastName.toUpperCase() + person.firstName.toLowerCase();\n    }    \n});\n\nExt.define('Employee', {\n    extend: 'Ext.data.Model',\n    fields: [{\n        name: 'person',\n        sortType: 'asPerson'\n    }, {\n        name: 'salary',\n        type: 'float' // sortType set to asFloat\n    }]\n});\n
\n

\n\n", + "extends": null, + "mixins": [ + + ], + "alternateClassNames": [ + + ], + "xtype": null, + "author": null, + "docauthor": "Evan Trimboli ", + "singleton": true, + "private": false, + "cfg": [ + + ], + "method": [ + { + "tagname": "method", + "name": "asDate", + "member": "Ext.data.SortTypes", + "doc": "

Date sorting

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "Number", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 91, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-asDate", + "shortDoc": "

Date sorting

\n" + }, + { + "tagname": "method", + "name": "asFloat", + "member": "Ext.data.SortTypes", + "doc": "

Float sorting

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "Float", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 106, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-asFloat", + "shortDoc": "

Float sorting

\n" + }, + { + "tagname": "method", + "name": "asInt", + "member": "Ext.data.SortTypes", + "doc": "

Integer sorting

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "Number", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 116, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-asInt", + "shortDoc": "

Integer sorting

\n" + }, + { + "tagname": "method", + "name": "asText", + "member": "Ext.data.SortTypes", + "doc": "

Strips all HTML tags to sort on text only

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "String", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 64, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-asText", + "shortDoc": "

Strips all HTML tags to sort on text only

\n" + }, + { + "tagname": "method", + "name": "asUCString", + "member": "Ext.data.SortTypes", + "doc": "

Case insensitive string

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "String", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 82, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-asUCString", + "shortDoc": "

Case insensitive string

\n" + }, + { + "tagname": "method", + "name": "asUCText", + "member": "Ext.data.SortTypes", + "doc": "

Strips all HTML tags to sort on text only - Case insensitive

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "String", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 73, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-asUCText", + "shortDoc": "

Strips all HTML tags to sort on text only - Case insensitive

\n" + }, + { + "tagname": "method", + "name": "none", + "member": "Ext.data.SortTypes", + "doc": "

Default sort that does nothing

\n", + "params": [ + { + "type": "Mixed", + "name": "s", + "doc": "

The value being converted

\n", + "optional": false + } + ], + "return": { + "type": "Mixed", + "doc": "

The comparison value

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 48, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-method-none", + "shortDoc": "

Default sort that does nothing

\n" + } + ], + "property": [ + { + "tagname": "property", + "name": "stripTagsRE", + "member": "Ext.data.SortTypes", + "type": "RegExp", + "doc": "

The regular expression used to strip tags

\n", + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 57, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes-property-stripTagsRE" + } + ], + "event": [ + + ], + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/data/SortTypes.js", + "linenr": 1, + "html_filename": "SortTypes.html", + "href": "SortTypes.html#Ext-data-SortTypes", + "cssVar": [ + + ], + "cssMixin": [ + + ], + "component": false, + "superclasses": [ + + ], + "subclasses": [ + + ], + "mixedInto": [ + + ], + "allMixins": [ + + ] +}); \ No newline at end of file