{
title: "UNIT OF MEASURE", width: 100, dataType: "string", dataIndx: "UnitOfMeasure",
render: function (ui) {
var abc = ui.rowData.ItemNo
var Unit = GetUnit(abc) //calling the GetUnit Function
return ui.cellData = Unit;
}
},
using the above solution I can see the value of ui.celldata on screen...but whenever I try to
var gridChanges = grid.getChanges({ format: 'byVal' });
console.log(gridChanges);
UnitOfMeasure: undefined
Here why can't I get the value of cell Unitofmeasure...could u plz help me out