Why onEventDrag not fired

I’ve attached the onEventDrag event to the scheduler and I found that this event is not fired when I drag event. Did I do something wrong?

[code]scheduler.attachEvent(“onEventDrag”, function (id, mode, e){
console.log("onEventDrag: "+mode);

	return true;

});[/code]

Hi,
please attach an example when we could repeat the problem.
I’ve executed the code you provided in browser console on this example and the handler was logged to the console when i dragged an event
docs.dhtmlx.com/scheduler/sample … _init.html[code]scheduler.attachEvent(“onEventDrag”, function (id, mode, e){
console.log("onEventDrag: "+mode);

  return true;

});
[/code]Result:
screencast.com/t/VLR4b5ckW