function CheckUncheckAll() { $("#table thead ").on("click", 'input[type="checkbox"]', function () { if (!this.disabled) { $('#table tbody chktransid').prop("checked", false); } if (this.checked) { $('#table tbody input[type="checkbox"]').prop("checked", true); } else { $('#table tbody input[type="checkbox"]').removeAttr("checked"); } });
$(function () { CheckUncheckAll() }); function CheckUncheckAll() { $("#table thead ").on("click", 'input[type="checkbox"]', function () { $('#table tbody input[type="checkbox"]:not(:disabled)').prop('checked', this.checked); }) }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)