DayPilot.Scheduler.dynamicEventRendering

The dynamicEventRendering property (string) controls progressive event rendering in the JavaScript Scheduler component.

Declaration

DayPilot.Scheduler.dynamicEventRendering

Possible Values

  • "Disabled" - all events are rendered at once.

  • "Progressive" - events are rendered as the user scrolls.

Default Value

"Progressive"

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript