Hey,
I downloaded the latest file for cellediting extension and noticed a change that made my code to stop working.
I have looked at the changes and noticed you have this new code in the gotoCell function:
var cparam = dg.datagrid('cell');
if (cparam){
var input = dg.datagrid('input', cparam);
if (input){
input.focus();
return;
}
}
This makes the gotoCell not work at all when I have a cell in edit, and now I cant check if the next cell I am going to is valid and worth the end edit of the current cell..
Can you check it out? I have currently removed this code and it now works fine but I am not sure if it will work as you continue to work on this extension.
Thanks.