Just sharing my answer since I am working with Bootstrap Toggle and not JQuery Toggle, but I used some of the accepted answer above:
$('#tblMyTable').on('draw.dt', function () {
$('.myInputCheckBoxClass').bootstrapToggle();
fncAdditionalBindingLogicForBoostrapToggle(); //In case you need any logic when you click the toggle button
});
Below code doesn't work since whenever I click the pagination of DataTable, the bindings become erratic, so I used the modified version code above:
$('#tblCFRMode').on('draw.dt', function () {
$('.myInputCheckBoxClass').each(function () {
if ($(this).prop('checked') == true) {
$(this).bootstrapToggle('on');
} else {
$(this).bootstrapToggle('off');
}
});
});