I\'ve looked around the site and can\'t seem to find an answer for this question. Feel free to direct me to said question, if it does indeed exist.
I\'m currently trying
I was facing the same problem and solved using the following code in chrome. Hope it will help.
$("#allchkbox").click(function() { if(this.checked) { $(".ItemChkbox").each(function() { this.checked = true; }); } else { $(".ItemChkbox").each(function() { this.checked = false; }); } });