$(function () {
$("#ContentPlaceHolder1_gvwList :checkbox").eq(0).click(function () {
if ($(this).is(":checked")) {
$(this).parent().parent().nextAll().find(":checkbox").attr("checked", "checked");
}
else {
$(this).parent().parent().nextAll().find(":checkbox").removeAttr("checked");
}
});
$("#ContentPlaceHolder1_gvwList :checkbox").not($("#ContentPlaceHolder1_gvwList :checkbox:first")).click(function () {
if ($(this).is(":checked")) {
if ($("#ContentPlaceHolder1_gvwList :checked").length == $("#ContentPlaceHolder1_gvwList :checkbox").length - 1) {
$("#ContentPlaceHolder1_gvwList :checkbox").eq(0).attr("checked", "checked");
}
}
else {
$("#ContentPlaceHolder1_gvwList :checkbox").eq(0).removeAttr("checked");
}
});
});