DataTables obtient toutes les cases à cocher avec pagination
$('#table').DataTable().rows().every(function (rowIdx, tableLoop, rowLoop) {
var data = this.node();
console.log($(data).find('input:checked'));
});
The Strangest Salamander