I am calling var changes = $grid.pqGrid("getChanges", { format: "byVal" }),
updateList = changes.updateList;
if (updateList && updateList.length > 0) {
hdnDataField.val(JSON.stringify(updateList));
}
On my grid I have
trackModel : { on: true },
editModel: {
saveKey:$.ui.keyCode.ENTER,
cellBorderWidth: 1,
clicksToEdit: 1,
onBlur: 'save',
keyUpDown:true},
.....
editorEnd: function (evt, ui) {
if (evt.keyCode != $.ui.keyCode.ESCAPE) {
$grid.pqGrid("saveEditCell");
}
}
Now getChanges returns me the entire row, even though I changed just one cell. Is there anyway to get just the cell that changed?
Thank you