Is there a way in dhtmlxGantt 2.0 to hide all linking options on tasks? Especially the link options that show up when hovering over a task bar? I’m not able to find any properties/options to do this in the documentation. I’ve set “gantt.config.readonly = true;” which prevents editing and resizing, but when this is set double-clicking on the task still brings up a popup.
there should have been another config that disables task details on double click, but seems like it’s missing from the beta.
But you can disable popup completely(or make some condition that would allow it’s showing) using onBeforeLightbox event: gantt.attachEvent("onBeforeLightbox", function(id) {
//return false to cancel opening lightbox
return false;
});docs.dhtmlx.com/gantt/api__gantt … event.html