Hide TR on bootstrapToggle change + update table stripes on row show/hide
$(function() {
$('#bootstrapToggleID').change(function() {
$('.label-accepted').closest('TR').toggleClass("hidden");
$("tr:not(.hidden)").each(function (index) {
$(this).toggleClass("stripe", !!(index & 1));
});
});
});