I need to use the value in a cell to change values in other cells, but when I try to use ui.colIndx, it shows only "undefined".
The code is below:
$("div#grid3").pqGrid({
width: 375, height: 275,
dataModel: dataModel3,
colModel: colsOption2,
bottomVisible: false,
title: "New Single",
cellSave: function ( event, ui) {
alert( ui.colIndx);
}
What am I doing wrong?