Skip to content

Commit 95fc279

Browse files
authored
Merge pull request #10080 from IgniteUI/astaev/issue10048-master
fix(grid): Focus input inside rAF #10048
2 parents c7cba08 + 79af220 commit 95fc279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export class IgxGridFilteringRowComponent implements AfterViewInit, OnDestroy {
209209
this.cdr.markForCheck();
210210
});
211211

212-
this.focusEditElement();
212+
requestAnimationFrame(() => this.focusEditElement());
213213
}
214214

215215
public get disabled(): boolean {

0 commit comments

Comments
 (0)