plugins
activates specified extensions
void plugins(object ext);
Parameters
ext | object | an object with extension names that need to be activated |
Example
gantt.plugins({
quick_info: true,
keyboard_navigation: true,
undo: true
});
See also
Change log
- The export_api plugin was included into the list of plugins in v8.0. To activate export service in earlier versions, you need to include the https://export.dhtmlx.com/gantt/api.js file on your page. Check the Migration article.
- Added in v7.0
Back to top