The initEventEnabled property (boolean) specifies whether the server-side Init event handler will be called during initialization.
DayPilot.Scheduler.initEventEnabledtrueThis property only applies to ASP.NET WebForms, ASP.NET MVC, and Java versions.
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"
<!-- ... -->
/>