$(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);
});
});
});
チェックされているチェックボックスごとに、以下の強調表示された項目を選択したい:
警告メッセージは「未定義」を返しています。