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

女生的网名这么多〃 提交于 2019-11-30 06:29:43

问题


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


回答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);



回答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



回答3:


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 :)



来源:https://stackoverflow.com/questions/12674663/how-to-change-a-rows-particular-cell-value-in-jqgrid

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!