The rowHeaderResizable property (boolean) enables or disables drag-and-drop resizing of the row headers displayed by the JavaScript Scheduler.
This property is only applicable when row header scrolling is enabled.
Available since 2025.4.6665.
Declaration
DayPilot.Scheduler.rowHeaderResizableDefault Value
trueExamples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderScrolling: true,
rowHeaderResizable: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderScrolling: true,
rowHeaderResizable: false,
// ...
};React
<DayPilotScheduler
rowHeaderScrolling={true}
rowHeaderResizable={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowHeaderScrolling="true"
:rowHeaderResizable="false"
<!-- ... -->
/>See Also
DayPilot.Scheduler.rowHeaderScrolling
DayPilot.Scheduler.rowHeaderWidth
Row Header Scrolling [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot