The initEventEnabled property (boolean) specifies whether the server-side Init event handler will be called during initialization.
Declaration
DayPilot.Scheduler.initEventEnabledDefault Value
trueNotes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot