The progressiveRowRendering property (boolean) enables progressive row rendering.
Declaration
DayPilot.Scheduler.progressiveRowRenderingDefault Value
trueExamples
JavaScript
const scheduler = new DayPilot.Scheduler("dp", {
progressiveRowRendering: false,
// ...
});
scheduler.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
progressiveRowRendering: false,
// ...
};React
<DayPilotScheduler
progressiveRowRendering={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:progressiveRowRendering="false"
<!-- ... -->
/>See Also
Progressive Row Rendering [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot