The progressiveRowRenderingPreload property (number) specifies the number of rows beyond the visible viewport that will be rendered when progressive row rendering is enabled.
The preload buffer is applied in both directions (-Y and +Y).
Declaration
DayPilot.Scheduler.progressiveRowRenderingPreloadDefault Value
25Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
progressiveRowRenderingPreload: 10,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
progressiveRowRenderingPreload: 10,
// ...
};React
<DayPilotScheduler
progressiveRowRenderingPreload={10}
{/* ... */}
/>Vue
<DayPilotScheduler
:progressiveRowRenderingPreload="10"
<!-- ... -->
/>See Also
Progressive Row Rendering [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot