Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82121

check checkbox select all / unselect all checked

$
0
0
Hi.
I take so much from this site. that I think I can contribute with this.

Already search for it. Seems like its not yet.
So here my code

//
$(".LINK_OR_BUTTON").click( function(event){
    
      event.preventDefault();
        
      if ( $(":input:checkbox.CLASS:checked", oTable.fnGetNodes()).size() <  oTable.fnSettings().fnRecordsTotal()){
          $(":input:checkbox.CLASS", oTable.fnGetNodes()).attr("checked", "checked");
          $(this).html("[Unselect]").attr("title","[Unselect]");
      } else {
          $(":input:checkbox.CLASS", oTable.fnGetNodes()).removeAttr("checked");
          $(this).html("[Select All]").attr("title","[Select All]");
      }
});

http://live.datatables.net/ihatir/5/

the link can by move/copy anywhere

Hope you like it

Viewing all articles
Browse latest Browse all 82121

Trending Articles