JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Data Grid › Selecting a grid-cell › Reply To: Selecting a grid-cell
April 27, 2023 at 6:54 am
#104783
Peter
Participant
That is what I have been trying, but it does not work.
onKey(e)
{
console.log('e.key: '+ e.key);
if (e.key === 'Ener')
{
e.preventDefault();
}
}
Despite of this, the Enter key still ends editing and moves focus to the cell below on the next row.