BUGFIX NumericField javascript does not accept negatives, make use of isNaN built-in javascript function instead of custom regex

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@108633 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2010-07-28 05:48:39 +00:00 committed by Sam Minnee
parent ddcb7b6b89
commit c738b4137b

View File

@ -20,11 +20,11 @@ class NumericField extends TextField{
$jsFunc =<<<JS
Behaviour.register({
"#$formID": {
validateNumericField: function(fieldName) {
validateNumericField: function(fieldName) {
el = _CURRENT_FORM.elements[fieldName];
if(!el || !el.value) return true;
if(el.value.match(/^\s*(\-?[0-9]+(\.[0-9]+)?\s*$)/)) {
if(!isNaN(el.value)) {
return true;
} else {
validationError(el, "'" + el.value + "' $error","validation");