Skip to content

Commit 87ca1d4

Browse files
MKirovaMKirova
authored andcommitted
fix(igxGrid): Update overlay state after scrolling completes and zone is stable.
1 parent 3b927e1 commit 87ca1d4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2495,11 +2495,10 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
24952495
this.zone.run(() => {
24962496
this.zone.onStable.pipe(first()).subscribe(() => {
24972497
this.verticalScrollContainer.onChunkLoad.emit(this.verticalScrollContainer.state);
2498+
if (this.rowEditable) {
2499+
this.changeRowEditingOverlayStateOnScroll(this.rowInEditMode);
2500+
}
24982501
});
2499-
2500-
if (this.rowEditable) {
2501-
this.changeRowEditingOverlayStateOnScroll(this.rowInEditMode);
2502-
}
25032502
});
25042503
this.disableTransitions = false;
25052504

0 commit comments

Comments
 (0)