The allowMultiMove property (boolean) enables moving all selected Scheduler events at once.
Declaration
DayPilot.Scheduler.allowMultiMoveDefault Value
falseExamples
JavaScript
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"
<!-- ... -->
/>See Also
Scheduler Event Multi-Moving [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot