我需要禁用所选行的复选框,以避免再次被选中,请使用自定义
function stateCheckBoxFormatter(value, row, index) {
logic for disable or not
return {
disabled: true,
checked: false
};
}
但是它仅在表启动或刷新时才起作用,而我所占用的是无需刷新即可停用。 这样的东西 让_data = $ table.bootstrapTable('getSelections'); 禁用阵列中复选框的逻辑。谢谢