Hi,
I use a KendGrid with a custom local dataSource, in method create we use a jQuery ajax call and on success we call the method e.success(e.data) as documented.
In kendogrid we have the follwing in onKeyDown event:
grid.saveRow(); //to save the row data
grid.dataSource.sync(); //sync the da source the transport create is correctly called
grid.addRow();
the effect is the following the new row is crerated but when the async call in transport read method and we invoke the e.success(e.data) the focus is lost and we exit from the editing of the new row.
Could you help us to fix this issue
Thanks,