}]],
onLoadSuccess: function(data){//加载完毕后获取所有的checkbox遍历
if (data.rows.length > 0) {
//循环判断操作为新增的不能选择
for (var i = 0; i < data.rows.length; i++) {
//根据operate让某些行不可选
if (data.rows[i].stopDate != ""&&data.rows[i].stopDate!=null) {
$("input[type='checkbox']")[i + 1].disabled = true;
}
}
}
},
onClickRow: function(rowIndex, rowData){
//加载完毕后获取所有的checkbox遍历
$("input[type='checkbox']").each(function(index, el){
//如果当前的复选框不可选,则不让其选中
if (el.disabled == true) {
EpbAllDatagrid.datagrid('unselectRow', index - 1);
if (rowData.stopDate != ""&&rowData.stopDate!=null) {
$.messager.show({
title:"提示",
msg:"此企业信息已禁止,不可以选择!"
})
}
}
})
},
onCheckAll:function(rows){
//加载完毕后获取所有的checkbox遍历
$("input[type='checkbox']").each(function(index, el){
//如果当前的复选框不可选,则不让其选中
if (el.disabled == true) {
EpbAllDatagrid.datagrid('unselectRow', index - 1);
}
})
}