onLightbox

fires after the user has opened the lightbox (edit form)

void onLightbox(string id);
idstringthe event's id

Example

scheduler.attachEvent("onLightbox", function (id){
    //any custom logic here
});

Details

Using this event is a good way to customize something in the lightbox.

Back to top