我需要获取notificationId 的节点VALUE。
节点的名称是 XML 中的“ID”。
这就是我现在所拥有的:
$(function DeleteNotification (userId)
{
$('#btnDelete').on('click', function()
{
debugger;
var treeView = $('#treeview').data("kendoTreeView");
$('#treeview').find('input:checkbox:checked').each(function()
{
//this is what im trying to get but once i get to this point, nothing happens under debug mode
var notificationId = treeView.text($("#ID"));
alert(notificationId);
//treeView.remove($(this).closest('.k-item'));
});
});
});
此行不起作用:
var notificationId = treeView.text($("#ID"));
如果您将鼠标悬停在变量“treeView”上,您将看到:
我需要带圆圈的值。
有谁知道如何做到这一点?在过去的 3 天里,我一直在与这个问题作斗争,但我找不到我需要的信息......