In my collection there are models which I would like to exclude from being selected. Is there a way to make a checkbox non responsive to select-all event? I would like it to stay checked
and disabled
. I've tried to do it outside of the Backgrid:
@$el.find("tr.inactive")
.find(":checkbox")
.prop("disabled", true)
.prop("checked", true)
But it's overridden on each "backgrid:select-all"
event.