We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 460de74 commit 5b8d707Copy full SHA for 5b8d707
projects/igniteui-angular/src/lib/grids/grid-base.component.ts
@@ -4294,7 +4294,9 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
4294
this.gridAPI.clear_filter(record.item.field);
4295
4296
// Close filter row
4297
- this.filteringService.isFilterRowVisible = false;
+ if (this.filteringService.filteredColumn && this.filteringService.filteredColumn.field === record.item.field) {
4298
+ this.filteringService.isFilterRowVisible = false;
4299
+ }
4300
4301
// Clear Sorting
4302
this.gridAPI.clear_sort(record.item.field);
0 commit comments