根据jqx小部件网格cellrenderer
上的值禁用复选框这是我的代码:
var cellsrenderer = function (row, columnfield, value, defaulthtml, columnproperties) {
var rowscount = $("#jqxgrid").jqxGrid("getdatainformation").rowscount;
for (j = 0; j < rowscount; j++) {
for (j = 0; j < rowscount; j++) {
var data = $('#jqxgrid').jqxGrid('getrowdata', j);
if (data.flag1 == '2') {
if (columnfield == 'generatepc' && value == true)
//here need to disable the checkbox
}
}
}
}
我无法修复它,你能提供任何解决方案或想法会对我好吗