DayPilot.Scheduler.multiMoveVerticalMode

The multiMoveVerticalMode property (string) sets how vertical row changes are handled when moving multiple events at once using event multi-moving and for joint events in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.multiMoveVerticalMode

Possible Values

  • "Disabled" prevents events from being moved vertically during multi-moving.

  • "Master" moves only the master event vertically. Other affected events stay in their original rows.

  • "All" moves all affected events by the same row offset.

Default Value

"Disabled"

Examples

JavaScript

const scheduler = new DayPilot.Scheduler("dp", {
  multiMoveVerticalMode: "All",
  // ...
});
scheduler.init();

Angular

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

React

<DayPilotScheduler
  multiMoveVerticalMode="All"
  {/* ... */}
/>

Vue

<DayPilotScheduler
  multiMoveVerticalMode="All"
  <!-- ... -->
/>

See Also

Event Multi-Moving [doc.daypilot.org]

Joint Events [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript