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.
DayPilot.Scheduler.multiMoveVerticalMode"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.
"Disabled"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"
<!-- ... -->
/>Event Multi-Moving [doc.daypilot.org]
Joint Events [doc.daypilot.org]