There are two columns col1, col2 in a grid
In cellSave event of col1, I have the follow coding
ui.rowData["col2"]=ui.rowData["col1"]*40;
$grid1.pqGrid( "refreshCell", { rowIndx: ui.rowIndx, dataIndx: 'col2' } );
It works fine but cannot be saved in update mode because the col2 is not regard as dirty
1) col1 has a red tag but col2 no red tag.
2) In col2, ui.newVal is the same of ui.oldVal ie. the ui.oldVal is updated as the same as the new value
3) changes = $grid1.pqGrid("getChanges", { format: "raw" }), changeds.updateList not able to record the change in col2.
Does it have solution?