Answer posted by Dan Letecky [DayPilot]
8 years ago.

If you want the event to be moved automatically you need to use "Update" value for the *Handling properties:

config: any = {
  eventMoveHandling: "Update",
  eventResizeHandling: "Update"
}

If you handle onEventResize (onEventMove) you can cancel the action by calling args.preventDefault().

The onEventResized (onEventMoved) handler is called when the update is complete (the event has already been moved).

Let me know if the problem persists.

Comment posted by Tom
8 years ago.

Can i use args.preventDefault() for Event Deleted too?

This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.