Skip to content

Commit 8408cab

Browse files
authored
Merge pull request #6874 from IgniteUI/hPopov/fix-issue-6707-82x
fix(grid): Set onSortingDone to be emitted after pipes trggers (8.2.x).
2 parents 3e3adfd + d74c99a commit 8408cab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4069,7 +4069,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
40694069
} else {
40704070
this.gridAPI.sort(expression);
40714071
}
4072-
this.onSortingDone.emit(expression);
4072+
requestAnimationFrame(() => this.onSortingDone.emit(expression));
40734073
}
40744074

40754075
/**

0 commit comments

Comments
 (0)