mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
051878c6a4
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102497 467b73ca-7a2a-4603-9d3b-597d59a354a9
72 lines
1.7 KiB
PHP
Executable File
72 lines
1.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* A Single Numeric field extending a typical
|
|
* TextField but with validation.
|
|
* @package forms
|
|
* @subpackage fields-formattedinput
|
|
*/
|
|
class NumericField extends TextField{
|
|
|
|
function Field() {
|
|
$html = parent::Field();
|
|
Requirements::javascript(SAPPHIRE_DIR . 'javascript/NumericField.js');
|
|
|
|
return $html;
|
|
}
|
|
|
|
function jsValidation() {
|
|
$formID = $this->form->FormName();
|
|
$error = _t('NumericField.VALIDATIONJS', 'is not a number, only numbers can be accepted for this field');
|
|
$jsFunc =<<<JS
|
|
Behaviour.register({
|
|
"#$formID": {
|
|
validateNumericField: function(fieldName) {
|
|
el = _CURRENT_FORM.elements[fieldName];
|
|
if(!el || !el.value) return true;
|
|
|
|
if(el.value.match(/^\s*(\-?[0-9]+(\.[0-9]+)?\s*$)/)) {
|
|
return true;
|
|
} else {
|
|
validationError(el, "'" + el.value + "' $error","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(trim($this->value))){
|
|
$validator->validationError(
|
|
$this->name,
|
|
sprintf(
|
|
_t('NumericField.VALIDATION', "'%s' is not a number, only numbers can be accepted for this field"),
|
|
$this->value
|
|
),
|
|
"validation"
|
|
);
|
|
return false;
|
|
} else{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
function dataValue() {
|
|
return (is_numeric($this->value)) ? $this->value : 0;
|
|
}
|
|
}
|
|
?>
|