DayPilot.Scheduler.initEventEnabled

The initEventEnabled property (boolean) specifies whether the server-side Init event handler will be called during initialization.

Declaration

DayPilot.Scheduler.initEventEnabled

Default Value

true

Notes

This property only applies to ASP.NET WebForms, ASP.NET MVC, and Java versions.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  initEventEnabled: false,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  initEventEnabled: false,
  // ...
};

React

<DayPilotScheduler
  initEventEnabled={false}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :initEventEnabled="false"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript