The dragOutAllowed property (boolean) enables dragging JavaScript Scheduler events out of the Scheduler grid.
Declaration
DayPilot.Scheduler.dragOutAllowedDefault Value
falseNotes
When enabled, events can be moved to another Scheduler instance, to a custom target defined using DayPilot.Scheduler.registerDropTarget(), or to the Queue component.
Examples
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"
<!-- ... -->
/>See Also
DayPilot.Scheduler.registerDropTarget()
Drag and Drop Between Two Schedulers [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot