我创建了一个带有复选框的jqgrid,如
{
name: 'Confirm', index: 'Confirm', width: 100, sortable: false,
formatter: function (rownum, cellvalue, options, rowObject) {
return "<input type='checkbox' id='check' />";
}
},
我的网格,
我需要根据最后一列值进行检查或取消选中。
如果值为确认,则表示我需要选中复选框。
如果最后一列值未确认,则表示我需要取消选中复选框
注意:我从JSON加载网格值get
答案 0 :(得分:2)
试试这个:
$('tr td:last-child').each(function(){
if($(this).text()=="Confirmed")
$(this).prev().find('input').prop('checked', true);
else
$(this).prev().find('input').prop('checked', false);
});