Bootstraps ICheck-Helper does not trigger on changed event
I just added this globally and it does the trick for me.
$(".i-checks input").on('ifChanged', function (e) {
$(this).trigger("change", e);
});
Use ifChanged or ifChecked mentioned in the documentation
$('input').on('ifChecked', function(event){
alert(event.type + ' callback');
});