I want to change a particular rows's cell value, I have the row Id. and I have tried using the following. But it doesnt work.
$("#my-jqgrid-table").jqGrid('setCell',rowId,'Currency', '12321');
I am using loadonce: true
Please can someone help me with this. Thanks
'Currency'
column incolModel
is really required. Moreover it's important to know when (in which context) you callsetCell
. Is the sell which you need to modify is in editing mode? – Oulu