Event Drag not working when using custom Lightbox

I’m experiencing a strange problem in my current application.

I’m using the dhtmlx scheduler object with a custom scheduler lightbox. Everything works fine apart from when an event is draged or resized within a day/week/unit view the eventChanged event is not firing.

I’ve done some tests and it works fine if I used the default lightbox, i.e. the event is fired. Is there somehthing special I need to do in order to get this to work or is this a known bug?

How did you create a custom lightbox ? Did you redefeine showLightbox method ?

Yes. Redefined/overloaded the showLightbox method.

Try to call the following after the lightbox is closed:

scheduler._edit_stop_event(event,true);

The 1st parameter of this method is the object of edited event (you should pass the necessary one)

That works. Great.

Thanks.