DayPilot.Scheduler.scrollDelayDynamic

The scrollDelayDynamic property (number) specifies a debouncing delay applied to onScroll invocations during scrolling when using dynamic event loading, in milliseconds.

Declaration

DayPilot.Scheduler.scrollDelayDynamic

Default Value

500

Notes

Use this property to control how often dynamic loading requests are triggered while the viewport is moving.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  scrollDelayDynamic: 200,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  scrollDelayDynamic: 200,
  // ...
};

React

<DayPilotScheduler
  scrollDelayDynamic={200}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :scrollDelayDynamic="200"
  <!-- ... -->
/>

See Also

Dynamic Event Loading [doc.daypilot.org]

Scrolling Performance [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript