New to Kendo UI for Vue? Start a free 30-day trial

SchedulerFormEditorProps

Represents the props of the Kendo UI for Vue SchedulerFormEditor component.

NameTypeDefaultDescription

allDayEditor?

any

Overrides the component used for visualizing the allDay field editor. The Kendo UI for Vue Checkbox component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

allDayLabel?

any

Overrides the component used for visualizing the allDay field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

allowSubmit

boolean

Indicates if the Form is ready to be submitted.

  • If allowSubmit is set to true and the Form is valid, the user will be able to submit the form.
  • If allowSubmit is set to true and the Form is not valid, the user will be able to set all fields

touched and visited state to true.

Useful for toggling the disabled state of the Submit button.

descriptionEditor?

any

Overrides the component used for visualizing the description field editor. The Kendo UI for Vue TextArea component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

descriptionError?

any

Overrides the component used for visualizing the description field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

descriptionLabel?

any

Overrides the component used for visualizing the description field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endEditor?

any

Overrides the component used for visualizing the end field editor. The Kendo UI for Vue DatePicker or Kendo UI for Vue DateTimePicker component is used by default depending on the allDay field value.

For more information, please refer to the Scheduler Form Editor Customization article.

endError?

any

Overrides the component used for visualizing the end field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endLabel?

any

Overrides the component used for visualizing the end field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endTimezoneCheckedEditor?

any

Overrides the component used for visualizing the end timezone checked editor. The Kendo UI for Vue Checkbox component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endTimezoneCheckedLabel?

any

Overrides the component used for visualizing the start timezone checked label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endTimezoneEditor?

any

Overrides the component used for visualizing the end timezone field editor. An extended Kendo UI for Vue ComboBox component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endTimezoneError?

any

Overrides the component used for visualizing the end timezone field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

endTimezoneLabel?

any

Overrides the component used for visualizing the end timezone field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

errors

KeyValue<string>

The key-value pair containing the current errors by field path, combined from both field and form level validators.

id?

string

Specifies the id attribute of the root element.

modified

boolean

Indicates if the Form is modified. If any field is modified, modified is set to true. The modified state of field is set to true when the onChange callback of the Field component is called for first time.

onChange?

(name: string, options: { value: any; }) => void

A callback for emiting changes to a specific field without using the Field component (see example).

Use onChange only if you cannot achieve the desired behavior through the Field component.

onFormreset?

() => void

A callback for resetting the Form.

onSubmit?

(event: any) => void

A callback for submitting the Form. Can be passed to the onClick property of the Submit button.

recurrenceEditor?

any

Overrides the component used for visualizing the recurrenceRule field editor. A custom made RecurrenceEditor component is used, by default.

We're planing on releasing the RecurrenceEditor as a standalone component in the future.

For more information, please refer to the Scheduler Form Editor Customization article.

resourceEditor?

any

Overrides the component used for visualizing each resource field editor. An extended Kendo UI for Vue MultiSelect or DropDownList component is used by default, depending on the multiple field of each individual resource.

For more information, please refer to the Scheduler Form Editor Customization article.

resourceLabel?

any

Overrides the component used for visualizing the start timezone checked field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

resourcesError?

any

Overrides the component used for visualizing each resources field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startEditor?

any

Overrides the component used for visualizing the start field editor. The Kendo UI for Vue DatePicker or Kendo UI for Vue DateTimePicker component is used by default depending on the allDay field value.

For more information, please refer to the Scheduler Form Editor Customization article.

startError?

any

Overrides the component used for visualizing the start field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startLabel?

any

Overrides the component used for visualizing the start field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startTimezoneCheckedEditor?

any

Overrides the component used for visualizing the start timezone checked editor. The Kendo UI for Vue Checkbox component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startTimezoneCheckedLabel?

any

Overrides the component used for visualizing the start timezone checked label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startTimezoneEditor?

any

Overrides the component used for visualizing the start timezone field editor. An extended Kendo UI for Vue ComboBox component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startTimezoneError?

any

Overrides the component used for visualizing the start timezone field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

startTimezoneLabel?

any

Overrides the component used for visualizing the start timezone field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

submitted

boolean

Indicates if the Form is successfuly submitted. Useful for detecting if user is leaving the form before saving changes.

tabIndex?

number

Specifies the tabIndex attribute of the root element.

titleEditor?

any

Overrides the component used for visualizing the title field editor. The Kendo UI for Vue Input component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

titleError?

any

Overrides the component used for visualizing the title field error. The Kendo UI for Vue Error component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

titleLabel?

any

Overrides the component used for visualizing the title field label. The Kendo UI for Vue Label component is used, by default.

For more information, please refer to the Scheduler Form Editor Customization article.

touched

boolean

Indicates if the Form is touched. If any field is touched, touched is set to true. The touched state of field is set to true when the onBlur callback of the Field component is called or when the user tries to submit the form.

valid

boolean

Indicates if the Form is valid. If any field is invalid, valid is set to false.

valueGetter

(name: string) => any

A callback for getting the value of a field without using the Field component (see example). Useful for creating and modifying the UI based on the field values.

visited

boolean

Indicates if the Form is visited. If any field is visited, visited is set to true. The visited state of field is set to true when the onFocus callback of the Field component is called or when the user tries to submit the form.