Upgrade to ExtJS 3.3.1 - Released 11/30/2010
[extjs.git] / docs / source / NumberField.html
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    
4   <title>The source code</title>
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 </head>
8 <body  onload="prettyPrint();">
9     <pre class="prettyprint lang-js">/*!
10  * Ext JS Library 3.3.1
11  * Copyright(c) 2006-2010 Sencha Inc.
12  * licensing@sencha.com
13  * http://www.sencha.com/license
14  */
15 <div id="cls-Ext.form.NumberField"></div>/**
16  * @class Ext.form.NumberField
17  * @extends Ext.form.TextField
18  * Numeric text field that provides automatic keystroke filtering and numeric validation.
19  * @constructor
20  * Creates a new NumberField
21  * @param {Object} config Configuration options
22  * @xtype numberfield
23  */
24 Ext.form.NumberField = Ext.extend(Ext.form.TextField,  {
25     <div id="cfg-Ext.form.NumberField-stripCharsRe"></div>/**
26      * @cfg {RegExp} stripCharsRe @hide
27      */
28     <div id="cfg-Ext.form.NumberField-maskRe"></div>/**
29      * @cfg {RegExp} maskRe @hide
30      */
31     <div id="cfg-Ext.form.NumberField-fieldClass"></div>/**
32      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
33      */
34     fieldClass: "x-form-field x-form-num-field",
35     
36     <div id="cfg-Ext.form.NumberField-allowDecimals"></div>/**
37      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
38      */
39     allowDecimals : true,
40     
41     <div id="cfg-Ext.form.NumberField-decimalSeparator"></div>/**
42      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
43      */
44     decimalSeparator : ".",
45     
46     <div id="cfg-Ext.form.NumberField-decimalPrecision"></div>/**
47      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
48      */
49     decimalPrecision : 2,
50     
51     <div id="cfg-Ext.form.NumberField-allowNegative"></div>/**
52      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
53      */
54     allowNegative : true,
55     
56     <div id="cfg-Ext.form.NumberField-minValue"></div>/**
57      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
58      */
59     minValue : Number.NEGATIVE_INFINITY,
60     
61     <div id="cfg-Ext.form.NumberField-maxValue"></div>/**
62      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
63      */
64     maxValue : Number.MAX_VALUE,
65     
66     <div id="cfg-Ext.form.NumberField-minText"></div>/**
67      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
68      */
69     minText : "The minimum value for this field is {0}",
70     
71     <div id="cfg-Ext.form.NumberField-maxText"></div>/**
72      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
73      */
74     maxText : "The maximum value for this field is {0}",
75     
76     <div id="cfg-Ext.form.NumberField-nanText"></div>/**
77      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
78      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
79      */
80     nanText : "{0} is not a valid number",
81     
82     <div id="cfg-Ext.form.NumberField-baseChars"></div>/**
83      * @cfg {String} baseChars The base set of characters to evaluate as valid numbers (defaults to '0123456789').
84      */
85     baseChars : "0123456789",
86     
87     <div id="cfg-Ext.form.NumberField-autoStripChars"></div>/**
88      * @cfg {Boolean} autoStripChars True to automatically strip not allowed characters from the field. Defaults to <tt>false</tt>
89      */
90     autoStripChars: false,
91
92     // private
93     initEvents : function() {
94         var allowed = this.baseChars + '';
95         if (this.allowDecimals) {
96             allowed += this.decimalSeparator;
97         }
98         if (this.allowNegative) {
99             allowed += '-';
100         }
101         allowed = Ext.escapeRe(allowed);
102         this.maskRe = new RegExp('[' + allowed + ']');
103         if (this.autoStripChars) {
104             this.stripCharsRe = new RegExp('[^' + allowed + ']', 'gi');
105         }
106         
107         Ext.form.NumberField.superclass.initEvents.call(this);
108     },
109     
110     <div id="method-Ext.form.NumberField-getErrors"></div>/**
111      * Runs all of NumberFields validations and returns an array of any errors. Note that this first
112      * runs TextField's validations, so the returned array is an amalgamation of all field errors.
113      * The additional validations run test that the value is a number, and that it is within the
114      * configured min and max values.
115      * @param {Mixed} value The value to get errors for (defaults to the current field value)
116      * @return {Array} All validation errors for this field
117      */
118     getErrors: function(value) {
119         var errors = Ext.form.NumberField.superclass.getErrors.apply(this, arguments);
120         
121         value = Ext.isDefined(value) ? value : this.processValue(this.getRawValue());
122         
123         if (value.length < 1) { // if it's blank and textfield didn't flag it then it's valid
124              return errors;
125         }
126         
127         value = String(value).replace(this.decimalSeparator, ".");
128         
129         if(isNaN(value)){
130             errors.push(String.format(this.nanText, value));
131         }
132         
133         var num = this.parseValue(value);
134         
135         if (num < this.minValue) {
136             errors.push(String.format(this.minText, this.minValue));
137         }
138         
139         if (num > this.maxValue) {
140             errors.push(String.format(this.maxText, this.maxValue));
141         }
142         
143         return errors;
144     },
145
146     getValue : function() {
147         return this.fixPrecision(this.parseValue(Ext.form.NumberField.superclass.getValue.call(this)));
148     },
149
150     setValue : function(v) {
151         v = this.fixPrecision(v);
152         v = Ext.isNumber(v) ? v : parseFloat(String(v).replace(this.decimalSeparator, "."));
153         v = isNaN(v) ? '' : String(v).replace(".", this.decimalSeparator);
154         return Ext.form.NumberField.superclass.setValue.call(this, v);
155     },
156     
157     <div id="method-Ext.form.NumberField-setMinValue"></div>/**
158      * Replaces any existing {@link #minValue} with the new value.
159      * @param {Number} value The minimum value
160      */
161     setMinValue : function(value) {
162         this.minValue = Ext.num(value, Number.NEGATIVE_INFINITY);
163     },
164     
165     <div id="method-Ext.form.NumberField-setMaxValue"></div>/**
166      * Replaces any existing {@link #maxValue} with the new value.
167      * @param {Number} value The maximum value
168      */
169     setMaxValue : function(value) {
170         this.maxValue = Ext.num(value, Number.MAX_VALUE);    
171     },
172
173     // private
174     parseValue : function(value) {
175         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
176         return isNaN(value) ? '' : value;
177     },
178
179     /**
180      * @private
181      * 
182      */
183     fixPrecision : function(value) {
184         var nan = isNaN(value);
185         
186         if (!this.allowDecimals || this.decimalPrecision == -1 || nan || !value) {
187             return nan ? '' : value;
188         }
189         
190         return parseFloat(parseFloat(value).toFixed(this.decimalPrecision));
191     },
192
193     beforeBlur : function() {
194         var v = this.parseValue(this.getRawValue());
195         
196         if (!Ext.isEmpty(v)) {
197             this.setValue(v);
198         }
199     }
200 });
201
202 Ext.reg('numberfield', Ext.form.NumberField);
203 </pre>    
204 </body>
205 </html>