I am using jquery data table for listing my content which have checkbox selection and selected content post the data but in submitted form only current page data sent.
You can check them at the end.
var table = $("#yourtablename").DataTable({
//your datatable options(optional)
});
Now jQuery have access to all the rows by following code
table.$('td > input:checkbox').each(function () {
// If checkbox is checked
if (this.checked) {
//Your code for example
alert($(this).attr('name'));
}
});