DayPilot.Scheduler.hideUntilInit

The hideUntilInit property (boolean) controls whether the Scheduler is hidden during initialization in the ASP.NET MVC Scheduler and Java Scheduler.

Declaration

DayPilot.Scheduler.hideUntilInit

Default Value

true

Notes

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"
  <!-- ... -->
/>

See Also

ASP.NET MVC Scheduler

Java Scheduler

DayPilot.Scheduler Class