OnEventChange is not working fine in 3.7

Hi,

I am updating an existing event.
I have some custom logic written for the same.

scheduler.attachEvent(“onEventChanged”, function(event_id,event_object)
{

//Custom Logic
});

Here issue is that, I am able to call this event while dragging and resizing the event. but not able to call while updating event. e.g. click on the event, edit it and save it.

also i have custom light box define.
It has stopped working in 3.7 version.

Also one more question… scheduler.filter_week() is getting called each time. previously this was not the case. why this is happening ??

scheduler.update_view(); also not seems to be working like before. what changes need to be done??

also i have custom light box define.
How you are ending lighbox operation, do you have

scheduler.endLightbox(true, …

after custom lightbox closing? Without such call, edit related events will not be triggered.

scheduler.filter_week() is getting called each time
It will be called each time when week view repainted, this is expected behavior ( and I do beleive - it was the same for previous versions as well )

scheduler.update_view(); also not seems to be
Not a part of public API actually, use

scheduler.updateView();