FormProps
Represents the props of the Kendo U for Vue Form component.
| Name | Type | Default | Description |
|---|---|---|---|
errors? |
|
Validation errors that override field and form validators. Provides validation errors directly as an object, unlike the vue
| |
ignoreModified? |
|
Set this to | |
initialValues? |
|
The initial field values of the Form.
components might throw errors related to switching from uncontrolled to controlled mode. | |
onChange? |
|
Fires each time any field value changes. The third parameter vue
| |
onSubmit? |
|
The submission handler for the Form. Called when at least one field has been modified, the user pressed the Submit button, and the form validation was successful. | |
onSubmitclick? |
|
Called every time the user presses the Submit button. Useful in advanced scenarios when you need to handle every submit event, even when the form is invalid or not modified state. | |
renderForm? |
|
The Form content that will be rendered. | |
validator? |
|
The validation function for the Form level.
Should return key-value pair where the key is the field path and the value is the error message.
Nested fields are supported, e.g.: 'users[0].name'.
You can use the same field path to access the value from the
values object using the |