Keyboard Navigation disabled after editCell() call

Hi,

To force an new Created Row to Editmode i do this:

gTasks.selectCell(gTasks.getRowIndex(aId),1);
window.setTimeout(function(){
gTasks.editCell();
},1);

The Row is in editmode and i can enter Text, but no further Navigation with Keyboard works until i click with Mouse somewhere else.
How can i restore Keyboard Handling ?

Try to use

gTasks.selectCell(gTasks.getRowIndex(aId),1); window.setTimeout(function(){ gTasks.setActive(true); gTasks.editCell(); },1);

setActive moves focus to the grid

Big Thanks for the fast Answer. I thought i had tested that, but i was wrong :slight_smile:.
Solved. Thanks.