SchedulerDataChangeEvent
Event arguments provided during scheduler data modification operations (add, update, delete). Allows interception and custom handling of CRUD operations and server-side validation.
Props
The following table outlines the props for the SchedulerDataChangeEvent:
| Name | Type | Default | Description |
|---|---|---|---|
| addedRecords | Record<string, any[]> | - | An array of newly created event records during add operations. |
| cancel | boolean | - | Set to true to cancel the entire data modification operation and revert all changes. |
| changedRecords | Record<string, any[]> | - | An array of modified event records during update operations. |
| deletedRecords | Record<string, any[]> | - | An array of deleted event records during delete operations. |