Hi I got custom light box working. On clicking the save button the data does get saved to the server successfully and closes the light box just fine. The only problem is that none of the “post lightbox event” gets triggered. Is this expected. The following event does not get triggered. Please help.
scheduler.attachEvent(“onEventSave”, function (id,data,flag){
console.log("onEventSave " + data.loadNo);
return true;
});
scheduler.attachEvent(“onAfterLightbox”, function (){
console.log("onAfterLightbox called ");
return true;
});