在我的收藏中,有一些模型我想排除在外。有没有办法让复选框不响应选择所有事件?我希望它保持checked
和disabled
。我试过在Backgrid:之外做这件事
@$el.find("tr.inactive")
.find(":checkbox")
.prop("disabled", true)
.prop("checked", true)
但它在每个"backgrid:select-all"
事件上都被覆盖。
您可能需要选择所有选项,然后根据不想选择的选项进行筛选。这种情况在sql中经常发生。类似于:
.filter(function( index ) {
return !index === 'whateverSelector';
})