Skip to content

Commit 4709e91

Browse files
committed
new conf options
1 parent 6b38853 commit 4709e91

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed
643 Bytes
Binary file not shown.
Binary file not shown.

src/plugin-dhtmlxGantt-helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
window.plugin_dhtmlxGantt = {};
2-
plugin_dhtmlxGantt.version = "0.3.0";
2+
plugin_dhtmlxGantt.version = "0.4.0";
33

44
plugin_dhtmlxGantt.init = function() {
55

src/plugin-source.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ plugin_dhtmlxGantt.chartContainerId = "' || v_chart_container || '";
2121
plugin_dhtmlxGantt.pageItemsToSubmit = "' || p_region.ajax_items_to_submit || '";
2222
plugin_dhtmlxGantt.queryDefined = ' || case when p_region.source is null then 'false' else 'true' end || ';
2323
gantt.config.xml_date = "%Y-%m-%d";
24+
gantt.config.show_grid = ' || p_region.attribute_06 || ';
25+
gantt.config.show_task_cells = ' || p_region.attribute_09 || ';
26+
gantt.config.show_links = ' || p_region.attribute_07 || ';
27+
gantt.config.show_progress = ' || p_region.attribute_08 || ';
28+
gantt.config.drag_move = ' || p_region.attribute_10 || ';
29+
gantt.config.drag_progress = ' || p_region.attribute_11 || ';
30+
gantt.config.drag_resize = ' || p_region.attribute_12 || ';
31+
gantt.config.drag_links = ' || p_region.attribute_13 || ';
2432
' || p_region.attribute_02 || '
2533
gantt.init("' || v_chart_container || '");
2634
' || p_region.attribute_03 || '

0 commit comments

Comments
 (0)