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
Thanks all for your effort, with help of a friend at work I managed to get this working with some jquery.
Here is what I did...
here
3
is used because I want to change my 3rd column.Hope this is useful for someone in future :)
You can use
getRowData
andsetRowData
methods to achieve this (they are working directly with data array):Here is the correct way according to the documentation :-
Check that all variables are correct as what you did seems correct. loadOnce has no impact, you must have a mistake elsewhere.