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 1b3f1c3 commit 5714b29Copy full SHA for 5714b29
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -2817,7 +2817,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
2817
2818
@HostListener('focusout', ['$event'])
2819
public blur(event) {
2820
- if ((event.target === this.tbody.nativeElement &&
+ if (!this.crudService.cell && (event.target === this.tbody.nativeElement &&
2821
this.navigation.activeNode.row >= 0 && this.navigation.activeNode.row < this.dataView.length)
2822
|| (event.target === this.theadRow.nativeElement && this.navigation.activeNode.row === -1)
2823
|| (event.target === this.tfoot.nativeElement && this.navigation.activeNode.row === this.dataView.length)) {
0 commit comments