datagrid: list of active filters in left column

This commit is contained in:
Jan Prochazka
2022-01-01 10:27:31 +01:00
parent dae7e38179
commit 020382a153
4 changed files with 32 additions and 5 deletions

View File

@@ -127,6 +127,10 @@ export abstract class GridDisplay {
return this.getColumns(null).filter(col => col.isChecked || col.uniquePath.length == 1);
}
findColumn(uniqueName: string) {
return this.getColumns(null).find(x => x.uniqueName == uniqueName);
}
getFkTarget(column: DisplayColumn): TableInfo {
return null;
}