FormComponentValidity
Represents the validity
state of the KendoReact form components.
For runnable examples on forms support, refer to the documentation of the respective form component:
- DateInput
- DatePicker
- TimePicker
- DateTimePicker
- AutoComplete
- ComboBox
- DropDownList
- MultiSelect
- Input
- MaskedTextBox
- NumericTextBox
- Checkbox
- Switch
Name | Type | Default | Description |
---|---|---|---|
badInput? |
|
Indicates whether the user has provided input in the user interface element that the user agent is unable to convert. | |
customError |
|
Indicates whether the element has a custom error. | |
patternMismatch? |
|
Indicates whether the value does not match the specified pattern. | |
rangeOverflow? |
|
Indicates whether the value is greater than the maximum specified by the max attribute. | |
rangeUnderflow? |
|
Indicates whether the value is less than the minimum specified by the min attribute. | |
stepMismatch? |
|
Indicates whether the value does not fit the rules determined by the step attribute. | |
tooLong? |
|
Indicates whether the value exceeds the specified maxlength. | |
tooShort? |
|
Indicates whether the value fails to meet the specified minlength. | |
typeMismatch? |
|
Indicates whether the value is not in the correct syntax when type is email or url. | |
valid |
|
Indicates whether the element meets all constraint validations and is therefore considered valid. | |
valueMissing |
|
Indicates whether the element has no value but is a required field. |