javascript scheduler drag drop between two schedulers

It is possible to drag events from one scheduler instance to another one in the same page.

This feature is disabled by default. It has to be enabled using dragOutAllowed property.

JavaScript

Example:

<div id="dp"></div>
<script type="text/javascript">
  var dp = new DayPilot.Scheduler("dp");
  dp.dragOutAllowed = true;
  // ...
  dp.init();
</script>

Demo:

ASP.NET WebForms

<DayPilot:DayPilotScheduler runat="server" id="DayPilotScheduler1"
  ...
  DragOutAllowed = "true"
/>

ASP.NET MVC

@Html.DayPilotScheduler("dps", new DayPilotSchedulerConfig {
  BackendUrl = ResolveUrl("~/Scheduler/Backend"),
  ...
  DragOutAllowed = true
})