fixed popup menu for columns

This commit is contained in:
Jan Prochazka
2021-07-18 07:57:25 +02:00
parent ba608ff438
commit 32d05edb6a
5 changed files with 16 additions and 11 deletions

View File

@@ -75,6 +75,7 @@ export abstract class GridDisplay {
}
changeSetKeyFields: string[] = null;
sortable = false;
groupable = false;
filterable = false;
editable = false;
isLoadedCorrectly = true;

View File

@@ -35,6 +35,7 @@ export class TableGridDisplay extends GridDisplay {
this.columns = this.getDisplayColumns(this.table, []);
this.filterable = true;
this.sortable = true;
this.groupable = true;
this.editable = true;
this.supportsReload = true;
this.baseTable = this.table;

View File

@@ -17,6 +17,7 @@ export class ViewGridDisplay extends GridDisplay {
this.columns = this.getDisplayColumns(view);
this.filterable = true;
this.sortable = true;
this.groupable = true;
this.editable = false;
this.supportsReload = true;
}