X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..refs/heads/master:/docs/api/Ext.Number.html diff --git a/docs/api/Ext.Number.html b/docs/api/Ext.Number.html deleted file mode 100644 index 1dd23913..00000000 --- a/docs/api/Ext.Number.html +++ /dev/null @@ -1,66 +0,0 @@ -
A collection of useful static methods to deal with numbers
-Checks whether or not the current number is within a desired range. If the number is already within the -range it is returned, otherwise the min or max value is returned depending on which side of the range is -exceeded. Note that this method returns the constrained value but does not change the current number.
-The number to check
-The minimum number in the range
-The maximum number in the range
-The constrained value if outside the range, otherwise the current value
-Validate that a value is numeric and convert it to a number if necessary. Returns the specified default value if -it is not.
- -Ext.Number.from('1.23', 1); // returns 1.23 -Ext.Number.from('abc', 1); // returns 1
-The value to return if the original value is non-numeric
-value, if numeric, defaultValue otherwise
-