Did DHTMLX Gantt Version 7.0 remove ext and locale folders?

Did DHTMLX Gantt Version 7.0 remove ext and locale folders?
I updated mine and they are missing. Or should I conserve it from my previous version?

Hello @Asyong,

The method of activating extensions was changed in the gantt β€œv7.0”, you can find the full list of changes by the following link:
https://docs.dhtmlx.com/gantt/whatsnew.html#x4543x70x4544x

From the β€œv7.0”, you should activate extensions using the β€œplugins” method instead of including them as separate β€œjs” files.

Here is the plugins usage example:

gantt.plugins({
    quick_info: true,
    keyboard_navigation: true,
    undo: true
});

You can find the full list of extensions, with activating examples by the following link:
https://docs.dhtmlx.com/gantt/desktop__extensions_list.html

1 Like

Thank you very much! This helped me a lot!