I'd like to manage alse the enter key in this way: in edit cell mode, when you press ENTER ti'd like to end the edit and start the edit in te next (right) cell.
I added this, but id does not work: the End edit is ok, but the next cell is not selected ,nor edited.
else if(e.keyCode == 13 ) {
dg.datagrid('endEdit', index);
dg.datagrid('gotoCell','right');
dg.datagrid('editCell',dg.datagrid('cell'));
}