The allowMultiResize property (boolean) allows resizing all selected events at once.
DayPilot.Scheduler.allowMultiResizefalseJavaScript
const dp = new DayPilot.Scheduler("dp", {
allowMultiResize: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
allowMultiResize: true,
// ...
};React
<DayPilotScheduler
allowMultiResize={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:allowMultiResize="true"
<!-- ... -->
/>Scheduler Event Multi-Resizing [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