plugins
지정된 확장 기능을 활성화합니다.
GanttPlugins plugins( [GanttPlugins ext] );
ext | GanttPlugins | 활성화할 확장 기능들을 나열한 객체 |
GanttPlugins | 활성화된 확장 기능들을 포함하는 객체 |
Example
gantt.plugins({
quick_info: true,
keyboard_navigation: true,
undo: true
});
See also
Change log
- v8.0부터, export_api plugin이 plugins 목록의 일부로 포함됩니다. 이전 버전에서는 https://export.dhtmlx.com/gantt/api.js 스크립트를 페이지에 추가해야 합니다. 자세한 내용은 Migration 가이드를 참조하세요.
- v7.0에 도입됨
Back to top