$(".checkall").click(function () {
if (this.checked) {
$("input[name='isBuy']").each(function () { this.checked = true; });
} else {
$("input[name='isBuy']").each(function () { this.checked = false; });
}
});