Skip to content

Commit

Permalink
Fixed #1024 - DataTable cell editor only validates on enter
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Nov 3, 2021
1 parent a3ac641 commit a219722
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/datatable/BodyCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ export class BodyCell extends Component {

this.closeCell(event);
}
else {
event.preventDefault();
}
}

findNextSelectableCell(cell) {
Expand Down

0 comments on commit a219722

Please sign in to comment.