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 d537904 commit ef50acfCopy full SHA for ef50acf
projects/igniteui-angular/src/lib/grids/filtering/grid-filtering.service.ts
@@ -292,7 +292,8 @@ export class IgxFilteringService implements OnDestroy {
292
this.clear_filter(field);
293
294
// Wait for the change detection to update filtered data through the pipes and then emit the event.
295
- requestAnimationFrame(() => this.grid.filteringDone.emit(null));
+ const emptyFilter = new FilteringExpressionsTree(null, field);
296
+ requestAnimationFrame(() => this.grid.filteringDone.emit(emptyFilter));
297
298
if (field) {
299
const expressions = this.getExpressions(field);
0 commit comments