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
You can use getRowData and setRowData methods to achieve this (they are working directly with data array):
getRowData
setRowData
var rowData = $('#my-jqgrid-table').jqGrid('getRowData', rowId); rowData.Currency = '12321'; $('#my-jqgrid-table').jqGrid('setRowData', rowId, rowData);