From 77648bb0cdb8050db943bae11b7171f95002123c Mon Sep 17 00:00:00 2001 From: Wahyu Ramadhan Date: Wed, 2 Aug 2023 11:45:29 +0700 Subject: [PATCH] Update show column --- edit-mode/function/ganttConfig.js | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/edit-mode/function/ganttConfig.js b/edit-mode/function/ganttConfig.js index 922c9b5..b505be3 100644 --- a/edit-mode/function/ganttConfig.js +++ b/edit-mode/function/ganttConfig.js @@ -527,7 +527,32 @@ let columnShows = { predecessor: false, updated_by: false } -gantt.config.columns = createColumnsConfig(columnShows); +gantt.config.columns = createColumnsConfig({ + action: true, + kode_sortname: true, + text: true, + start_date: true, + end_date: true, + planned_start: true, + planned_end: true, + planned_duration: true, + duration: true, + rencana_biaya: true, + cost_actual: true, + assign_hr: true, + material: true, + tools: true, + expenses: true, + bobot_planning: true, + baseline_progress: true, + progress: true, + progress_actual: true, + jumlah_pekerjaan: true, + jobs_done: true, + satuan: true, + predecessor: true, + updated_by: true +}); gantt.config.reorder_grid_columns = true; gantt.config.resize_rows = true;