如何在bootstrapTable中以编程方式禁用复选框?

时间:2018-07-11 04:56:59

标签: bootstrap-table

我需要禁用所选行的复选框,以避免再次被选中,请使用自定义

function stateCheckBoxFormatter(value, row, index) {
       logic for disable or not
       return {
                disabled: true,
                checked: false
            };
}

但是它仅在表启动或刷新时才起作用,而我所占用的是无需刷新即可停用。 这样的东西 让_data = $ table.bootstrapTable('getSelections'); 禁用阵列中复选框的逻辑。谢谢

0 个答案:

没有答案