Hello,
Here we have a requirement like, once if I Enter the focused editable cell it should focus to next editable cell, and double click on particular focused cell should allow me to edit the cell. And after editing If i press Enter It should focus next Editable cell.(cell should not be in editCell, only it should focus the particular cell). I tried With
editorKeyDown: function(evt, ui){
if(evt.keyCode == 13){
evt.originalEvent.keyCode = 40;
}
}
Because here evt.originalEvent.keyCode = 40; makes cell into editCell.