DayPilot.Scheduler.dragOutAllowed

The dragOutAllowed property (boolean) enables dragging JavaScript Scheduler events out of the Scheduler grid.

Declaration

DayPilot.Scheduler.dragOutAllowed

Default Value

false

Notes

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()

DayPilot.Queue Class

Drag and Drop Between Two Schedulers [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript