Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $(document).on("ifClicked","#selecAllRec",function(event){
  2. if(event.currentTarget.checked){
  3. proCustomerListTbl.api().column(0).nodes().to$().each(function(index){
  4. $(this).find('.proCustChk').iCheck("uncheck");
  5. });
  6. } else {
  7. proCustomerListTbl.api().column(0).nodes().to$().each(function(index){
  8. $(this).find('.proCustChk').iCheck("check");
  9. });
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement