I would like to programmatically append a new row to a DataGrid and automatically enter in edit mode on a cell ('description') of this new row.
{
var newItem = {
reference_seq: newId,
reference_previous: prev,
reference_next: null,
description: 'to-be-replaced'
};
store.newItem(newItem);
// Enter edit mode here
}
I've found a doStartEdit() function on the grid but I am unable to make it work. For example:
