The stickyParents property (boolean) controls whether parent Scheduler rows stay sticky at the top of the grid during scrolling.
Declaration
DayPilot.Scheduler.stickyParentsDefault Value
trueNotes
Available since 2026.2.6932.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
stickyParents: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
stickyParents: false,
// ...
};React
<DayPilotScheduler
stickyParents={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:stickyParents="false"
<!-- ... -->
/>See Also
DayPilot.Scheduler.treeEnabled
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot