feat(datatables): auto refresh on datatables (#2974)

* feat(datatables): auto refresh on datatables

* feat(datatables): auto refresh implementation on docker related resources
This commit is contained in:
xAt0mZ
2019-07-22 12:54:59 +02:00
committed by GitHub
parent cc487ae68a
commit 03c82cac69
51 changed files with 577 additions and 29 deletions
@@ -35,5 +35,12 @@ function ($scope, $controller, DatatableService) {
if (this.filters && this.filters.state) {
this.filters.state.open = false;
}
var storedSettings = DatatableService.getDataTableSettings(this.tableKey);
if (storedSettings !== null) {
this.settings = storedSettings;
this.settings.open = false;
}
this.onSettingsRepeaterChange();
};
}]);