$(document).ready(function () {
$("#cblAllParamList input[type='checkbox']").each(function (i) {
$(this).click(function () {
var j = i + 2;
if (!showParam) {
$("#tbData tr").find('td:eq(' + j + ')').hide();
$("#trHeader").find('th:eq(' + j + ')').hide();
}
else {
$("#tbData tr").find('td:eq(' + j + ')').show();
$("#trHeader").find('th:eq(' + j + ')').show();
}
});
});
});