Scheduler lightbox closing

I have a scheduler light box with custom save button in it .
after saving the lightbox form i need to close the lightbox how to do it ?
FYI iam not using the default save button
scheduler.config.buttons_left = [“dhx_manualsave_btn”,“dhx_cancel_btn”,“dhx_appoinment_btn”];
scheduler.locale.labels[“dhx_manualsave_btn”] = “Save”;

scheduler.attachEvent(“onLightboxButton”, function(button_id, node, e){
if(button_id == “dhx_manualsave_btn”){
save function
}
});

please suggest me regarding this . any reply will be deeply appreciated :slight_smile:

Hi,
try this method

scheduler.hide_lightbox();

thanks for your reply .
I have created the custom light box , it fixed my issue , anyway thanks for your reply .:slight_smile: