X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/src/data/SortTypes.js diff --git a/src/data/SortTypes.js b/src/data/SortTypes.js index 3ad612bf..6e1484b3 100644 --- a/src/data/SortTypes.js +++ b/src/data/SortTypes.js @@ -61,8 +61,8 @@ Ext.define('Ext.data.SortTypes', { /** * Default sort that does nothing - * @param {Mixed} s The value being converted - * @return {Mixed} The comparison value + * @param {Object} s The value being converted + * @return {Object} The comparison value */ none : function(s) { return s; @@ -77,7 +77,7 @@ Ext.define('Ext.data.SortTypes', { /** * Strips all HTML tags to sort on text only - * @param {Mixed} s The value being converted + * @param {Object} s The value being converted * @return {String} The comparison value */ asText : function(s) { @@ -86,7 +86,7 @@ Ext.define('Ext.data.SortTypes', { /** * Strips all HTML tags to sort on text only - Case insensitive - * @param {Mixed} s The value being converted + * @param {Object} s The value being converted * @return {String} The comparison value */ asUCText : function(s) { @@ -95,7 +95,7 @@ Ext.define('Ext.data.SortTypes', { /** * Case insensitive string - * @param {Mixed} s The value being converted + * @param {Object} s The value being converted * @return {String} The comparison value */ asUCString : function(s) { @@ -104,7 +104,7 @@ Ext.define('Ext.data.SortTypes', { /** * Date sorting - * @param {Mixed} s The value being converted + * @param {Object} s The value being converted * @return {Number} The comparison value */ asDate : function(s) { @@ -119,8 +119,8 @@ Ext.define('Ext.data.SortTypes', { /** * Float sorting - * @param {Mixed} s The value being converted - * @return {Float} The comparison value + * @param {Object} s The value being converted + * @return {Number} The comparison value */ asFloat : function(s) { var val = parseFloat(String(s).replace(/,/g, "")); @@ -129,7 +129,7 @@ Ext.define('Ext.data.SortTypes', { /** * Integer sorting - * @param {Mixed} s The value being converted + * @param {Object} s The value being converted * @return {Number} The comparison value */ asInt : function(s) {