DayPilot.Scheduler.dragOutAllowed

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

This way, the events can be moved to another Scheduler instance, to a custom target defined using DayPilot.Scheduler.registerDropTarget(), or to the Queue component.

Default Value

false

Example

const scheduler = new DayPilot.Scheduler("dp", {
  dragOutAllowed: true,
  // ...
});
scheduler.init();