DayPilot.Scheduler.dynamicLoading

The dynamicLoading property (boolean) enables the dynamic loading mode in the JavaScript Scheduler, where events are loaded on demand during scrolling, using the onScroll event handler.

Default Value

false

See Also

Example

Scheduler config:

{
  dynamicLoading: true,
  onScroll: async args => {
    // ...
  },
  // ...
}