greaterThan validator
Return true if the value is greater than or equals to given number
Options
* — Required option
Option | HTML attribute | Type | Description |
---|---|---|---|
inclusive |
data-fv-greaterthan-inclusive |
Boolean | Can be true or false .If true , the input value must be greater than or equal to the
comparison one.If false , the input value must be
greater than the comparison one |
message |
data-fv-greaterthan-message |
String | The error message. The dynamic message is supported |
value * |
data-fv-greaterthan-value |
Float | The number to make a comparison to. It's a dynamic option |
When setting options via HTML attributes, remember to
enable the validator by setting data-fv-greaterthan="true".
You don't need to do that when using HTML 5 min="..." attribute.
You don't need to do that when using HTML 5 min="..." attribute.
The message and other options can be updated on the
fly via the updateMessage() and updateOption() methods
If you want the value to support custom format, such as a comma for thousand separator, you should use the transformer option. The modifying the value before validating example is good starting point.
Example
Related validators
The following validators might be useful to you: