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