{
checkbox: true,
formatter: function (value, row, index) {
if(row.ISTOPIC === 1){
return {
disabled : false,
}
}else{
return {
disabled : true,
}
}
return row.ID;
}
}
bootstrap table checkbox 根据值选中、禁用等
原文:https://www.cnblogs.com/oralig/p/10177896.html