The blockOnCallBack property (boolean) blocks the UI using an overlay div during a server-side callback.
DayPilot.Scheduler.blockOnCallBackfalseThe 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.
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"
<!-- ... -->
/>Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot