Datatables Jquery capture clicking on pagination buttons
How to uncheck header checkbox while traversing pages in paginated datatable, i.e. suppose i have checked the header checkbox and traversed to next or last page using the pagination buttons, now i want the header checkbox to be unselected. Appreciate help in advance.
Regar开发者_如何学Cds,
Vaibhav
You can do this in the fnDrawCallback function
"fnDrawCallback": function () {
$("#select-all-header").removeAttr("checked");
}
精彩评论