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);
});
});
});
我要選擇下面的被檢查每個複選框突出顯示的項目:如何從kendo TreeView數據源獲取特定的節點值?
警報消息帶回「不確定」。