Classic and Interactive Report Header Check Box
-------------------
<input type="checkbox" id="checkAll" > Check All
function and Global Variable Declaration
---------------------
$('#checkAll').click(function () {
$('input:checkbox').prop('checked', this.checked);
});
No comments:
Post a Comment