Я использую библиотеку JavaScript Gijgo TreeView и хочу, чтобы определенный узел не выбирался.Есть ли способ?
Мой код инициализации дерева:
tree = $('#tree').tree({
primaryKey: 'id',
uiLibrary: 'materialdesign',
dataSource: {
url: '@Url.Content("~/FilteredRecords/")@Model.FilterPack'},
checkboxes: true,
expandAll: true,
dataBound: function (e) {
tree.expandAll();
},
select: function (e, node, id) {
if (node[0].childElementCount<2) {
loadIframe('contentFrame', '@Url.Content("~/images/")' + id);
} else {
loadIframe('contentFrame', '@Url.Content("~/PDFs/Blank.pdf")');
}
}
});