DayPilot.Scheduler.progressiveRowRenderingPreload

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.progressiveRowRenderingPreload

Default Value

25

Examples

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript