Dear Team,
for (let key in data) {
ui.rowData[key] = data[key];
}
When using pqgrid v9, I found that this program can update cells in grid( some data in fields of ui.rowData has been changed with program above ): $grid.pqGrid("refreshRow",{rowIndx:ui.rowIndx});
but using following program, cells could not be updated.
$grid.pqGrid("updateRow",{
rowIndx: ui.rowIndx,
newRow: ui.rowData,
checkEditable:false,
refresh: true
});
Would you like to provide any advice?