Skip to content

Commit 8e6977c

Browse files
authored
fix(esf): show missing columns in select #2879 (#2892)
1 parent 64aa6f6 commit 8e6977c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/app/hierarchical-grid/hierarchical-grid-external-excel-style-filtering/hierarchical-grid-external-excel-style-filtering.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export class HGridExternalExcelStyleFilteringComponent implements AfterViewInit{
2121
}
2222

2323
public ngAfterViewInit() {
24-
this.columns = this.hgrid.columns.filter(c => c.filterable);
25-
24+
this.columns = this.hgrid.columnList.filter(c => c.filterable);
2625
}
2726
}

0 commit comments

Comments
 (0)