Senario: So basically I'm using DataTables and have checkboxes on its first column. My DataTables have multiple pages (pagination).
The Problem: When I check a few boxes on a page (could be any page), AND also check a few on OTHER pages.
The results only gets saved if I am on the current page
I'm quite new to datatables/javascript and can't really figure out how to solve this issue.
$('#formDataTable').DataTable({
         responsive: true,
         autoWidth: true,
         "bFilter": true,
         "bRetrieve": true,
         "bInfo": true,
         "sPageFirst": false,
         "sPageLast": false,
});
I have read these SO pages. Checkboxes will only work on current pagination page in jQuery datatables Link is currently dead to this question -> Pagination with selected check boxes. Checkboxes will only work on current pagination page. jQuery datatables
 
     
     
     
     
    