DayPilot.Scheduler.beforeCellRenderCaching

The beforeCellRenderCaching property (boolean) enables caching of Scheduler grid cell properties set using the onBeforeCellRender event handler.

Declaration

DayPilot.Scheduler.beforeCellRenderCaching

Default Value

true

Notes

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  beforeCellRenderCaching={false}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :beforeCellRenderCaching="false"
  <!-- ... -->
/>

See Also

Cell Customization [doc.daypilot.org]

DayPilot.Scheduler.onBeforeCellRender

DayPilot.Scheduler.update()

DayPilot.CellArray.invalidate()

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript