剑道网格。选中此列以检查其他列

时间:2013-11-19 02:27:23

标签: checkbox kendo-ui

在我的kendo Grid中,有两列复选框..

我想检查行选择的第一列,然后检查第二列。

全部谢谢!

1 个答案:

答案 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"));
   });
});