Hello
I'm using datagrid cell editing extension and here is the problem:
after doubleclicking on some cell on column A and after updating value on column B, previously selected cell in column A is no more selected. I'm updating row like:
$('#dg').datagrid('updateRow',{
index: index,
row: {
total: amount
}
});
How can selected cell remain selected like before I call updateRow?
With other words, if I don't call updateRow, cell remain selected but I need to somehow update cell on column B and I don't see updateCell so I call updateRow and it de-selects cell which was selected and edited.
Thank you.