Reset visibility of ID column on table loading

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2019-12-20 08:52:21 +00:00
parent 7dc5c5cb94
commit 772d52c09a
4 changed files with 8 additions and 0 deletions

View File

@@ -206,6 +206,8 @@ function initTable() {
data.start = 0;
// Always start with empty search field
data.search.search = "";
// Reset visibility of ID column
data.columns[0].visible = false;
// Apply loaded state to table
return data;
}