You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ".gantt_noselect" too $root instead of document.body to make grid column resize work in Shadow DOM.
The codebase has different ways of toggling .gantt_noselect class. Please streamline them all to use $root instead of document.body to make this work in the shadow dom.
If there are some issues, it is hard to suggest what might be wrong as I don't see your code.
In that case, please add your configuration to the following snippet and make sure that the issue is reproduced there: https://snippet.dhtmlx.com/40tsh9uz
Then, click on the Save button and send me the link.
Or send me a ready demo with all the necessary JavaScript and CSS files so that I can reproduce the issue locally.
Add ".gantt_noselect" too $root instead of document.body to make grid column resize work in Shadow DOM.
The codebase has different ways of toggling
.gantt_noselect
class. Please streamline them all to use $root instead of document.body to make this work in the shadow dom.Examples from codebase:
✅ gantt3.$root.classList.add("gantt_noselect");
👎 ❌ document.body.className += " gantt_noselect";
The text was updated successfully, but these errors were encountered: