#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.