Skip to content

Commit 56834cd

Browse files
committed
fix(adv-filtering): exclude col-groups #5886
1 parent 8829ca7 commit 56834cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/filtering/advanced-filtering/advanced-filtering-dialog.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export class IgxAdvancedFilteringDialogComponent implements AfterViewInit, OnDes
254254
}
255255

256256
get filterableColumns(): IgxColumnComponent[] {
257-
return this.grid.columns.filter((col) => col.filterable);
257+
return this.grid.columns.filter((col) => !col.columnGroup && col.filterable);
258258
}
259259

260260
public dragStart(dragArgs: IDragStartEventArgs) {

0 commit comments

Comments
 (0)