The hideUntilInit property (boolean) controls whether the Scheduler is hidden during initialization in the ASP.NET MVC Scheduler and Java Scheduler.
DayPilot.Scheduler.hideUntilInittrueIf set to true, the Scheduler becomes visible after the first callback (Init event).
JavaScript
const dp = new DayPilot.Scheduler("dp", {
hideUntilInit: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
hideUntilInit: false,
// ...
};React
<DayPilotScheduler
hideUntilInit={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:hideUntilInit="false"
<!-- ... -->
/>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