Skip to content

Commit

Permalink
Merge pull request #3177 from IgniteUI/rkaraivanov/fix3164-7.0
Browse files Browse the repository at this point in the history
fix(igxCell): Make sure to exit edit mode before refocus
  • Loading branch information
kdinev authored Nov 28, 2018
2 parents 57ed275 + 84d9aea commit f2a2b69
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions projects/igniteui-angular/src/lib/grids/cell.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,7 @@ export class IgxGridCellComponent implements OnInit, AfterViewInit {
if (this.column.editable) {
if (this.inEditMode) {
this.grid.endEdit(true);
this.inEditMode = false;
this.nativeElement.focus();
} else {
this.inEditMode = true;
Expand Down

0 comments on commit f2a2b69

Please sign in to comment.