Skip to content

Commit

Permalink
new conf options
Browse files Browse the repository at this point in the history
  • Loading branch information
ogobrecht committed Mar 7, 2017
1 parent 6b38853 commit 4709e91
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
Binary file modified apex-install/demo-app-including-supporting-objects.sql.zip
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/plugin-dhtmlxGantt-helper.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
window.plugin_dhtmlxGantt = {};
plugin_dhtmlxGantt.version = "0.3.0";
plugin_dhtmlxGantt.version = "0.4.0";

plugin_dhtmlxGantt.init = function() {

Expand Down
8 changes: 8 additions & 0 deletions src/plugin-source.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ plugin_dhtmlxGantt.chartContainerId = "' || v_chart_container || '";
plugin_dhtmlxGantt.pageItemsToSubmit = "' || p_region.ajax_items_to_submit || '";
plugin_dhtmlxGantt.queryDefined = ' || case when p_region.source is null then 'false' else 'true' end || ';
gantt.config.xml_date = "%Y-%m-%d";
gantt.config.show_grid = ' || p_region.attribute_06 || ';
gantt.config.show_task_cells = ' || p_region.attribute_09 || ';
gantt.config.show_links = ' || p_region.attribute_07 || ';
gantt.config.show_progress = ' || p_region.attribute_08 || ';
gantt.config.drag_move = ' || p_region.attribute_10 || ';
gantt.config.drag_progress = ' || p_region.attribute_11 || ';
gantt.config.drag_resize = ' || p_region.attribute_12 || ';
gantt.config.drag_links = ' || p_region.attribute_13 || ';
' || p_region.attribute_02 || '
gantt.init("' || v_chart_container || '");
' || p_region.attribute_03 || '
Expand Down

0 comments on commit 4709e91

Please sign in to comment.