This question may have been asked many times, but I would like to know if it possible to dynamically change the cell value of a jqgrid?
I basically have a grid that is t
I don't think that changing the value is what you really need in this situation. You should rather create your own custom formatter. It might look more less like this:
var nullFormatter = function(cellvalue, options, rowObject) {
if (cellValue == null)
return "Not Applicable";
else
return cellValue;
};
This is just very basic, sample implementation but it should give you an idea.