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
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...
$("#" + rowId).find('td').eq('3').html('newText')
here 3 is used because I want to change my 3rd column.
3
Hope this is useful for someone in future :)