diff --git a/infolog/js/app.js b/infolog/js/app.js index 42d6be2a35..caeb9ca549 100644 --- a/infolog/js/app.js +++ b/infolog/js/app.js @@ -249,7 +249,7 @@ var InfologApp = /** @class */ (function (_super) { nm.dataview.getColumnMgr().columns[i].set_width(colData[i].width); nm.dataview.getColumnMgr().columns[i].set_visibility(colData[i].visible); } - nm.dataview.getColumnMgr().updated = true; + nm.dataview.getColumnMgr().updated(); // Update page - set update_in_progress to true to avoid triggering // the change handler and looping if the user has a custom field // column change diff --git a/infolog/js/app.ts b/infolog/js/app.ts index 4592f5c051..90fd89ca8f 100644 --- a/infolog/js/app.ts +++ b/infolog/js/app.ts @@ -281,7 +281,7 @@ class InfologApp extends EgwApp nm.dataview.getColumnMgr().columns[i].set_width(colData[i].width); nm.dataview.getColumnMgr().columns[i].set_visibility(colData[i].visible); } - nm.dataview.getColumnMgr().updated = true; + nm.dataview.getColumnMgr().updated(); // Update page - set update_in_progress to true to avoid triggering // the change handler and looping if the user has a custom field