0
$(document).ready(function()
{
    $('#btnDelete').on('click', function()
    {
        var treeView = $('#treeview').data("kendoTreeView");
        $('#treeview').find('input:checkbox:checked').each(function()
        {
            //I want to capture the value of the ID node here:
            var id = treeView.ID;
            alert(id);
        });
    });
});

我想为每个选中的复选框选择下面突出显示的项目:

警报消息带回“未定义”。

4

1 回答 1

0

我想出了如何做到这一点:

$('#treeview').find('input:checkbox:checked').each(function()
    {
        debugger;
        var li = $(this).closest(".k-item")[0];
        var notificationId = treeView.dataSource.getByUid(li.getAttribute('data-uid')).ID;

....
于 2013-08-07T00:15:06.433 回答