The dynamicEventRendering property (string) controls progressive event rendering in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.dynamicEventRenderingPossible Values
"Auto"- events are rendered progressively, unless on-demain event loading from server is enabled (see dynamicLoading). Supported since 2026.3.7007."Disabled"- all events are rendered at once."Progressive"- events are rendered as the user scrolls.
Default Value
"Auto"Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
dynamicEventRendering: "Disabled",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
dynamicEventRendering: "Disabled",
// ...
};React
<DayPilotScheduler
dynamicEventRendering="Disabled"
{/* ... */}
/>Vue
<DayPilotScheduler
dynamicEventRendering="Disabled"
<!-- ... -->
/>See Also
Progressive Event Rendering [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot