Skip to content

Commit 914a039

Browse files
authored
Merge pull request #7527 from IgniteUI/mkirova/fix-4993-9.0.x
fix(igxGrid): Update overlay state after scrolling completes and zone…
2 parents c501480 + 3f3cd2f commit 914a039

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)