The scrollDelayDynamic property (number) specifies a debouncing delay applied to onScroll invocations during scrolling when using dynamic event loading, in milliseconds.
Declaration
DayPilot.Scheduler.scrollDelayDynamicDefault Value
150Notes
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]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot