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 5b8d707 commit 8d3a3d1Copy full SHA for 8d3a3d1
projects/igniteui-angular/src/lib/grids/grid-base.component.ts
@@ -4294,8 +4294,10 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
4294
this.gridAPI.clear_filter(record.item.field);
4295
4296
// Close filter row
4297
- if (this.filteringService.filteredColumn && this.filteringService.filteredColumn.field === record.item.field) {
4298
- this.filteringService.isFilterRowVisible = false;
+ if ( this.filteringService.isFilterRowVisible
+ && this.filteringService.filteredColumn
4299
+ && this.filteringService.filteredColumn.field === record.item.field) {
4300
+ this.filteringRow.close();
4301
}
4302
4303
// Clear Sorting
0 commit comments