I am using custom form for lightbox. When I open the lightbox I need the background to be disabled and only the lightbox to be active.
I tried to use the showcover method like this -
gantt.showLightbox = function(id) {
gantt.showCover();
if (task.progress != 1) {
showAndPopulateCustomLightbox(id); //shows the lightbox
}
};
This disabled my background as well as the lightbox. I need the lightbox not to be disabled.
Could you pls. help.