forked from Techsystech/web
[IMP] web_decimal_numpad_dot: use the decimal_point defined in user language
parent
1a03fd4273
commit
991c194962
|
@ -11,11 +11,17 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
floatKeypress: function(e){
|
floatKeypress: function(e){
|
||||||
if(e.keyCode == '46' || e.charCode == '46'){
|
if (e.keyCode == '46' || e.charCode == '46') {
|
||||||
//Cancel the keypress
|
// Cancel the keypress
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
// Add the comma to the value of the input field
|
// Add the comma to the value of the input field
|
||||||
this.$("input").val(this.$("input").val() + ',');
|
this.$("input").val(this.$("input").val() + instance.web._t.database.parameters.decimal_point);
|
||||||
|
}
|
||||||
|
else if (e.keyCode == '44' || e.charCode == '44') {
|
||||||
|
// Cancel the keypress
|
||||||
|
e.preventDefault();
|
||||||
|
// Add the comma to the value of the input field
|
||||||
|
this.$("input").val(this.$("input").val() + instance.web._t.database.parameters.thousands_sep);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue