cellSave: function (evt, ui) {
if (ui.dataIndx === 'Validation') {
$grid.pqGrid("updateRow", { rowIndx: ui.rowIndx, row: { 'TargetedList': 'Private'}});
}
}
I have not included checking condition in code. But gist is :
if validation column cell value is changed to 'Fail', I would like 'TargetedList' column current row's cell to be updated to 'Private', But it not working with above code.