SchedulerDataChangeEvent

Event arguments provided during scheduler data modification operations (add, update, delete). Allows interception and custom handling of CRUD operations with support for server-side validation and cancellation. Enables developers to implement custom validation logic, loading indicators, or data persistence workflows.

Props

The following table outlines the props for the SchedulerDataChangeEvent:

NameTypeDefaultDescription
addedRecords
Record<string, any[]>
-

Array of newly created event records during add operations. Each record contains the full event data for the newly added events.

cancel
boolean
-

Set to true to cancel the entire data modification operation and revert all changes to the scheduler. Useful for validation failures or business logic constraints.

changedRecords
Record<string, any[]>
-

Array of modified event records during update operations. Each record contains the updated event data for changed events.

deletedRecords
Record<string, any[]>
-

Array of deleted event records during delete operations. Each record contains the full data of removed events.