fix(SQ/StatusIntValidator): Validation function fixed
Validation function fixed
This commit is contained in:
parent
aecb4816e0
commit
2398b8bd46
|
@ -51,7 +51,15 @@ StatusValidator {
|
||||||
validatorObj: IntValidator { bottom: root.bottom; locale: root.locale.name; top: root.top }
|
validatorObj: IntValidator { bottom: root.bottom; locale: root.locale.name; top: root.top }
|
||||||
|
|
||||||
validate: function (t) {
|
validate: function (t) {
|
||||||
// Basic validation management
|
let value = parseInt(t)
|
||||||
return root.validatorObj.validate() === IntValidator.Acceptable
|
let floatValue = parseFloat(t)
|
||||||
|
let nan = isNaN(t)
|
||||||
|
|
||||||
|
if(nan || value !== floatValue )
|
||||||
|
return false
|
||||||
|
|
||||||
|
if(value <= root.top && value >= root.bottom)
|
||||||
|
return true
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue