Skip to content

Commit

Permalink
Fixed #2535
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed May 29, 2017
1 parent 7805b5a commit 3d8481d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/datatable/datatable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1575,7 +1575,9 @@ export class DataTable implements AfterViewChecked,AfterViewInit,AfterContentIni
}

//tab
else if(event.keyCode == 9) {
else if(event.keyCode == 9) {
this.onEditComplete.emit({column: column, data: rowData, index: rowIndex});

if(event.shiftKey)
this.moveToPreviousCell(event);
else
Expand Down

0 comments on commit 3d8481d

Please sign in to comment.