jQuery:
$(document).ready(function() {
var table = $('#mytable').DataTable();
$('.checkall').click(function() {
table.column(0).nodes().to$().each(function(index) {
$(this).find('.checkbox').attr("checked", true);
});
table.draw();
});
$('.uncheckall').click(function() {
table.column(0).nodes().to$().each(function(index) {
$(this).find('.checkbox').attr("checked", false);
});
table.draw();
});
});