DayPilot.Queue.onEventMoved

This onEventMove event is fired after the user finishes event moving (on drop), after the event has been updated.

Declaration

DayPilot.Queue.onEventMoved(args);

Parameters

  • args.e (DayPilot.Event) - event object 
  • args.external (boolean) - external source status
  • args.position (number) - target vertical position
  • args.source (DayPilot.Queue or DayPilot.Scheduler) - source component

Example

dp.onEventMoved = function (args) {
  dp.message("Event moved.");
};