silverstripe-framework/forms/NumericField.php
Normann Lou 3bc0eaafbb implement validation to tablefield,
fixed bug on validation of datefield, emailfield, numericefield.
make CMS validation enabled.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40755 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-08-23 05:47:54 +00:00

57 lines
1.3 KiB
PHP
Executable File

<?php
/**
* A Single Numeric field extending a typical
* TextField but with validation.
*/
class NumericField extends TextField{
function jsValidation() {
$formID = $this->form->FormName();
$jsFunc =<<<JS
Behaviour.register({
"#$formID": {
validateNumericField: function(fieldName) {
el = _CURRENT_FORM.elements[fieldName];
if(!el || !el.value) return true;
if(el.value.match(/^([0-9]+(\.[0-9]+)?$)/)) {
return true;
} else {
validationError(el, "'" + el.value + "' is not a number, only numbers can be accepted for this field","validation");
return false;
}
}
}
});
JS;
Requirements::customScript($jsFunc, 'func_validateNumericField');
//return "\$('$formID').validateNumericField('$this->name');";
return <<<JS
if(typeof fromAnOnBlur != 'undefined'){
if(fromAnOnBlur.name == '$this->name')
$('$formID').validateNumericField('$this->name');
}else{
$('$formID').validateNumericField('$this->name');
}
JS;
}
/** PHP Validation **/
function validate($validator){
if($this->value && !is_numeric($this->value)){
$validator->validationError($this->name,"'$this->value' is not a number, only numbers can be accepted for this field","validation");
return false;
} else{
return true;
}
}
function dataValue() {
return (is_numeric($this->value)) ? $this->value : 0;
}
}
?>