onAfterEventDragged

Is there an event that fires when a user has finished dragging (resizing) an event?

I’d like to be able to inject some custom code at this point.

Thanks.

Hi,
check onBeforeEventChanged event
docs.dhtmlx.com/doku.php?id=dhtm … entchanged

That event doesn’t tell you if the event was modified by dragging.

I am trying to identify events that were modified by resizing/dragging.

The event is triggered after drag and resize actions, try the following code with any example from the package scheduler.attachEvent("onBeforeEventChanged", function(event_object, native_event, is_new, unmodified_event){ dhtmlx.message("onAfterEventDragged"); return true; });