Numeric range (Validator)
This checks whether the numeric value of the element is within a defined value range ([min, max]). For details and examples, see the behaviour Numeric range.
►NOTE◄ Only integers can be used as a numeric range.
Example:
Value in the element |
Result for value range min = 0/max = 100 |
Comments |
0 |
(all OK, info text not displayed) |
Min value is included |
100 |
(all OK, info text not displayed) |
Max value is included |
-1 |
|
Value < Min value is queried |
101 |
|
Value> Max value is queried |
1e2 |
(all OK, info text not displayed) |
Value 100 (10²) Included |
1e3 |
|
Value 1000 (10³) excluded |
100.99 |
|
The decimal point (thousands separator) is ignored and the value 10099 is excluded |