DayPilot.Scheduler.cellSweepingCacheSize

The cellSweepingCacheSize property (number) sets the size of the cell DOM cache. It is the maximum number of grid cells that are out of the Scheduler viewport but remain in the DOM.

Declaration

DayPilot.Scheduler.cellSweepingCacheSize

Default Value

1000

Notes

This property applies only when cellSweeping is enabled.

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  cellSweepingCacheSize={500}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :cellSweepingCacheSize="500"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.cellSweeping

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript