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

前端 未结 3 1612
一整个雨季
一整个雨季 2020-12-14 01:18

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         


        
相关标签:
3条回答
  • 2020-12-14 01:55

    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);
    
    0 讨论(0)
  • 2020-12-14 01:56

    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
    0 讨论(0)
  • 2020-12-14 01:57

    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.

    Hope this is useful for someone in future :)

    0 讨论(0)
提交回复
热议问题