在我的kendo Grid中,有两列复选框..
我想检查行选择的第一列,然后检查第二列。
全部谢谢!
答案 0 :(得分:0)
$(function() {
$("table tr").delegate(".first:checkbox", "click", function() {
var firstCheckBox = $(this), secondCheckBox = $(this).closest("tr").find(".second:checkbox");
secondCheckBox.prop("checked", firstCheckBox.prop("checked"));
});
});