Disable SELECT-Box in the Lightbox

Hey

Is there a way to disable a SELECT-Box in the Lightbox?

Thank you

Hello,

In the onLightbox event you can locate and disable it:

var select = scheduler._lightbox.getElementsByTagName('select')[0]; select.disabled = true;
Don’t forget to enable it for another event.

Kind regards,
Ilya

Thank you :slight_smile: