ac0ab795e762d5efcdbf88f24540d3785cf96114
[roojs1] / Roo / form / NumberField.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13 /**
14  * @class Roo.form.NumberField
15  * @extends Roo.form.TextField
16  * Numeric text field that provides automatic keystroke filtering and numeric validation.
17  * @constructor
18  * Creates a new NumberField
19  * @param {Object} config Configuration options
20  */
21 Roo.form.NumberField = function(config){
22     Roo.form.NumberField.superclass.constructor.call(this, config);
23 };
24
25 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
26     /**
27      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
28      */
29     fieldClass: "x-form-field x-form-num-field",
30     /**
31      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
32      */
33     allowDecimals : true,
34     /**
35      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
36      */
37     decimalSeparator : ".",
38     /**
39      * @cfg {String} thousandSeparator Character(s) to allow as the thousand separator (defaults to '') - set to ',' for example
40      */
41     thousandSeparator : "",
42     /**
43      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
44      */
45     decimalPrecision : 2,
46     /**
47      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
48      */
49     allowNegative : true,
50     /**
51      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
52      */
53     minValue : Number.NEGATIVE_INFINITY,
54     /**
55      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
56      */
57     maxValue : Number.MAX_VALUE,
58     /**
59      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
60      */
61     minText : "The minimum value for this field is {0}",
62     /**
63      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
64      */
65     maxText : "The maximum value for this field is {0}",
66     /**
67      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
68      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
69      */
70     nanText : "{0} is not a valid number",
71
72     // private
73     initEvents : function(){
74         Roo.form.NumberField.superclass.initEvents.call(this);
75         var allowed = "0123456789";
76         if(this.allowDecimals){
77             allowed += this.decimalSeparator;
78         }
79         allowed += this.thousandSeparator;
80         if(this.allowNegative){
81             allowed += "-";
82         }
83         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
84         var keyPress = function(e){
85             var k = e.getKey();
86             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
87                 return;
88             }
89             var c = e.getCharCode();
90             if(allowed.indexOf(String.fromCharCode(c)) === -1){
91                 e.stopEvent();
92             }
93         };
94         this.el.on("keypress", keyPress, this);
95     },
96
97     // private
98     validateValue : function(value){
99         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
100             return false;
101         }
102         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
103              return true;
104         }
105         var num = this.parseValue(value);
106         if(isNaN(num)){
107             this.markInvalid(String.format(this.nanText, value));
108             return false;
109         }
110         if(num < this.minValue){
111             this.markInvalid(String.format(this.minText, this.minValue));
112             return false;
113         }
114         if(num > this.maxValue){
115             this.markInvalid(String.format(this.maxText, this.maxValue));
116             return false;
117         }
118         return true;
119     },
120
121     getValue : function(){
122         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
123     },
124
125     // private
126     parseValue : function(value){
127         value = parseFloat(String(value).replace(this.decimalSeparator, ".").replace(this.thousandSeparator, ''));
128         return isNaN(value) ? '' : value;
129     },
130
131     // private
132     fixPrecision : function(value){
133         var nan = isNaN(value);
134         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
135             return nan ? '' : value;
136         }
137         return parseFloat(value).toFixed(this.decimalPrecision);
138     },
139
140     setValue : function(v){
141         v = this.fixPrecision(v);
142         if(this.thousandSeparator != ''){
143        //     v = Roo.util.Format.number(v, this.decimalPrecision, this.thousandSeparator);
144         } 
145         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
146     },
147
148     // private
149     decimalPrecisionFcn : function(v){
150         return Math.floor(v);
151     },
152
153     beforeBlur : function(){
154         var v = this.parseValue(this.getRawValue());
155         if(v){
156             this.setValue(v);
157         }
158     }
159 });