SchedulerQuickInfoProps
Configures custom renderers for the Quick Info Popup shown when selecting cells or events in the scheduler. Supports separate customization for cell creation popups (add) and existing event popups (edit) with header, content, and footer sections. Enables developers to implement specialized popup layouts or alternative quick-edit experiences for different interaction scenarios.
Props
The following table outlines the props for the SchedulerQuickInfoProps:
| Name | Type | Default | Description |
|---|---|---|---|
| adaptive | boolean | - | When enabled, the quick info popup displays in full-screen mode on mobile devices. Provides better usability and visibility on smaller screens. |
| addContent | (props: { cellData: SchedulerCellDetails; }) => node | - | Custom React component to render the content section of the quick info popup for cell selection. Replaces the default body with custom content when adding new events. |
| addFooter | (props: { cellData: SchedulerCellDetails; }) => node | - | Custom React component to render the footer section of the quick info popup for cell selection. Replaces the default footer with custom action buttons when adding new events. |
| addHeader | (props: { cellData: SchedulerCellDetails; }) => node | - | Custom React component to render the header section of the quick info popup for cell selection. Replaces the default header with custom content when adding new events. |
| editContent | (props: { eventData: EventModel; }) => node | - | Custom React component to render the content section of the quick info popup for existing events. Replaces the default event details with custom content when viewing or editing events. |
| editFooter | (props: { eventData: EventModel; }) => node | - | Custom React component to render the footer section of the quick info popup for existing events. Replaces the default footer with custom action buttons when viewing or editing events. |
| editHeader | (props: { eventData: EventModel; }) => node | - | Custom React component to render the header section of the quick info popup for existing events. Replaces the default header when viewing or editing selected events. |