DayPilot.Scheduler.rowHeaderResizable

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.rowHeaderResizable

Default Value

true

Examples

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript