This commit is contained in:
Jan Prochazka
2020-05-09 20:28:59 +02:00
parent d2fa296139
commit 9284861c35
3 changed files with 24 additions and 0 deletions

View File

@@ -29,6 +29,11 @@ export class TableGridDisplay extends GridDisplay {
this.table = this.cache.tables.basetbl;
if (!this.table) {
this.loadTableIntoCache('basetbl', tableName);
this.isLoadedCorrectly = false;
} else {
if (!this.table.columns || this.table.columns.length == 0) {
this.isLoadedCorrectly = false;
}
}
this.columns = this.getDisplayColumns(this.table, []);