Hi @Jananicn,
If I understand you correctly, you want to disable some controls in the lightbox, am I right?
If it is so, you easily can do it using the onLightbox event. All that you need is to get access to the lightbox section you want to change: var userSection = gantt.getLightboxSection('users'),
where users is the name of the section. Get access to the HTML element you want to disable: var userSelectors = userSection.node.querySelectorAll("select").
After that, you will be able to add the disabled attribute to each select element in this section:
The same scenario will work with another lightbox sections/controls.
Here is a demo(the tasks with names “Non editable #”, have disabled controls : user/duration ): http://snippet.dhtmlx.com/cde475a72
If I misunderstand you, could you please clarify your question?