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:
Definition
Package:@progress/kendo-react-dropdowns
Properties
badInput?
boolean
Indicates whether the user has provided input in the user interface element that the user agent is unable to convert.
customError
boolean
Indicates whether the element has a custom error.
patternMismatch?
boolean
Indicates whether the value does not match the specified pattern.
rangeOverflow?
boolean
Indicates whether the value is greater than the maximum specified by the max attribute.
rangeUnderflow?
boolean
Indicates whether the value is less than the minimum specified by the min attribute.
stepMismatch?
boolean
Indicates whether the value does not fit the rules determined by the step attribute.
tooLong?
boolean
Indicates whether the value exceeds the specified maxlength.
tooShort?
boolean
Indicates whether the value fails to meet the specified minlength.
typeMismatch?
boolean
Indicates whether the value is not in the correct syntax when type is email or url.
valid
boolean
Indicates whether the element meets all constraint validations and is therefore considered valid.
valueMissing
boolean
Indicates whether the element has no value but is a required field.