How to change a row's particular cell value in jqgrid

63,255

Solution 1

You can use getRowData and setRowData methods to achieve this (they are working directly with data array):

var rowData = $('#my-jqgrid-table').jqGrid('getRowData', rowId);
rowData.Currency = '12321';
$('#my-jqgrid-table').jqGrid('setRowData', rowId, rowData);

Solution 2

Here is the correct way according to the documentation :-

$("#my-jqgrid-table").jqGrid("setCell", rowid, "Currency", "New value");

Check that all variables are correct as what you did seems correct. loadOnce has no impact, you must have a mistake elsewhere.

  • Are you sure the row name is Currency (not the index)
  • Check the variable rowId, should it be rowid or rowID
Share:
63,255
Yasser Shaikh
Author by

Yasser Shaikh

Hey!

Updated on May 14, 2020

Comments

  • Yasser Shaikh
    Yasser Shaikh about 4 years

    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