The hideUntilInit property (boolean) controls whether the Scheduler is hidden during initialization in the ASP.NET MVC Scheduler and Java Scheduler.
Declaration
DayPilot.Scheduler.hideUntilInitDefault Value
trueNotes
If set to true, the Scheduler becomes visible after the first callback (Init event).
Examples
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"
<!-- ... -->
/>
DayPilot