SchedulerCellClickEvent
Event arguments provided when a scheduler cell is clicked or tapped. Contains the cell's time range and interaction details for custom event handling.
Props
The following table outlines the props for the SchedulerCellClickEvent:
| Name | Type | Default | Description |
|---|---|---|---|
| cancel | boolean | - | Set to true to cancel the default cell click behavior (e.g., preventing event creation dialogs). |
| element | HTMLElement | - | The DOM element that was clicked, enabling direct manipulation or inspection if needed. |
| endTime | Date | - | The end time of the clicked time slot or date cell. |
| isAllDay | boolean | - | Indicates whether the clicked cell belongs to the all-day row (true) or a timed slot (false). |
| nativeEvent | MouseEvent | - | The native MouseEvent object triggered by the cell interaction. |
| startTime | Date | - | The start time of the clicked time slot or date cell. |