FormComponentProps
Represents the basic props 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?
string
Specifies the name
property of the input
DOM element.
This property is part of the FormComponentProps interface.
required?
boolean
Specifies if null
is a valid value for the component.
This property is part of the FormComponentProps interface.
valid?
boolean
Overrides the validity state of the component.
If valid
is set, the required
property will be ignored.
This property is part of the FormComponentProps interface.
validationMessage?
string
Controls the form error message of the component. If set to an empty string, no error will be thrown.
This property is part of the FormComponentProps interface.
validityStyles?
boolean
If set to false
, no visual representation of the invalid state of the component will be applied.
This property is part of the FormComponentProps interface.