The allowMultiMove property (boolean) enables moving all selected Scheduler events at once.
DayPilot.Scheduler.allowMultiMovefalseJavaScript
const dp = new DayPilot.Scheduler("dp", {
allowMultiMove: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
allowMultiMove: true,
// ...
};React
<DayPilotScheduler
allowMultiMove={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:allowMultiMove="true"
<!-- ... -->
/>Scheduler Event Multi-Moving [doc.daypilot.org]
Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot