Date validators
Date validators test whether the component's value has a valid date format according to local settings. You can use these attributes for date validation:
| Attribute | Description |
|---|---|
| > | The component's value must be greater than the specified value. |
| < | The component's value must be less than the specified value. |
| >= | The component's value must be greater than or equal to the specified value. |
| <= | The component's value must be less than or equal to the specified value. |
| = | The component's value must be equal to the specified value. |
| <> | The component's value must not be equal to the specified value. |
| Minimum | The same as >=. |
| Maximum | The same as <=. |