gpt4 book ai didi

c# - 如何从 Kendo TreeView 数据源获取特定节点值?

转载 作者:行者123 更新时间:2023-12-03 22:52:34 24 4
gpt4 key购买 nike

$(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);
});
});
});

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

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

最佳答案

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

$('#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;

....

关于c# - 如何从 Kendo TreeView 数据源获取特定节点值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18023295/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com