The blockOnCallBack property (boolean) blocks the UI using an overlay div during a server-side callback.
Declaration
DayPilot.Scheduler.blockOnCallBackDefault Value
falseNotes
The overlay div is created on top of the Scheduler control. It uses a *_block CSS class, for example scheduler_default_block when the default theme is active.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
blockOnCallBack: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
blockOnCallBack: true,
// ...
};React
<DayPilotScheduler
blockOnCallBack={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:blockOnCallBack="true"
<!-- ... -->
/>
DayPilot