The dragOutAllowed property (boolean) enables dragging JavaScript Scheduler events out of the Scheduler grid.
DayPilot.Scheduler.dragOutAllowedfalseWhen enabled, events can be moved to another Scheduler instance, to a custom target defined using DayPilot.Scheduler.registerDropTarget(), or to the Queue component.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
dragOutAllowed: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
dragOutAllowed: true,
// ...
};React
<DayPilotScheduler
dragOutAllowed={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:dragOutAllowed="true"
<!-- ... -->
/>DayPilot.Scheduler.registerDropTarget()
Drag and Drop Between Two Schedulers [doc.daypilot.org]