0

我在下面使用此代码将特定列“区域”标记为脏。

    $("#list4").jqGrid("setCell", rowId ,'area' ,'', "dirty-cell" );  

我想使用下面的代码检索标记为脏的这一行:

var retCol = $('#list4').getChangedCells('dirty');

我无法使用 getChangedCells('dirty'); 检索此修改后的行;

但是,如果我使用如下硬编码值

$("#list4").jqGrid("setCell", rowId ,'area' ,'200', "dirty-cell" );  

我可以在 jqGrid 中看到这个更改的值,但我仍然无法使用

getChangedCells('dirty');

任何帮助都将不胜感激

谢谢

4

1 回答 1

1
//With the help i got from Oleg, it works like i wanted.. 

    var $grid = $("#list4");
    $("#" + $.jgrid.jqID(rowId)).addClass("edited");
    $grid.jqGrid("setCell", rowId, "area", "", "dirty-cell");
于 2013-03-04T02:58:22.057 回答