EditService
Defines the interface for a service that the reactive and template editing directives of the Scheduler use to persist changes made during editing.
Definition
Package:@progress/kendo-angular-scheduler
Methods
Creates a new event.
The event to create.
Creates an exception for an existing recurring event. The recurrenceId field of the exception or the custom field set by the model map points to the master event.
The occurrence to remove from the series.
valueanyAn object with the updated field values, for example, a form group value.
Returns the master recurring event for a specified recurring event.
An event from the recurrence series.
Returns:TEvent
The master recurring event for the series.
Checks if the event is a recurrence exception.
The event to check.
Returns:boolean
true if the event is a unique event that belongs to a recurrence series. Otherwise, returns false.
Checks if the event is part of a recurrence series.
The event to check.
Returns:boolean
true if the event is an occurrence, exception, or master event. Otherwise, returns false.
Removes a non-recurring event.
The event to remove.
Removes a single occurrence from a recurring series. The recurrenceId field of the occurrence or the custom field set by a model map points to the master event.
The occurrence to remove.
Removes the recurrence series and any exceptions.
Any event from the recurrence series.
Updates the event by copying changed fields from the value object.
The event to update.
valueanyAn object with the new field values, for example, a form group value.