复选框选中或取消选中jqgrid

时间:2014-06-19 10:23:31

标签: javascript jquery checkbox jqgrid

我创建了一个带有复选框的jqgrid,如

{
   name: 'Confirm', index: 'Confirm', width: 100, sortable: false,
   formatter: function (rownum, cellvalue, options, rowObject) {
              return "<input type='checkbox' id='check'  />";
               }
       },

我的网格,enter image description here

我需要根据最后一列值进行检查或取消选中。

如果值为确认,则表示我需要选中复选框。

如果最后一列值未确认,则表示我需要取消选中复选框

注意:我从JSON加载网格值get

1 个答案:

答案 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);
});