How to remeber checked boxes values with paging. when i checked values on 3 pages. it only storing last page values and other values removing.
i used below with client side processing .
$('.button').click(function () {
var id = "";
var oTable = $("#example").dataTable();
$(".checkboxClass:checked", oTable.fnGetNodes()).each(function () {
});
});