作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
通过单击 treeview 的节点,我需要检索由远程数据加载的 treeview 数据。
var homogeneous = new kendo.data.HierarchicalDataSource({
transport: {
read: {
url: '<c:url value="/welcome/list/"/>',
dataType: "json"
}
},
schema: {
model: {
hasChildren: "hasFiles",
children: "items"
}
}
});
var tv= $("#treeview").kendoTreeView({
dataSource: homogeneous,
dataTextField: "Name",
change:function(e){
// Need to retrive the "hasFiles" data on clicking the respective selected nodes of treeview
}
}
最佳答案
您的 TreeView 实例化代码将需要一个 select 事件,该 select 事件将把该事件作为参数。然后您将使用该事件对象来获取您需要的 TreeView 数据。
var tv= $("#treeview").kendoTreeView({
// other configuration code removed for brevity
select: function (e) {
e.preventDefault();
var tree = $('#treeview').data('kendoTreeView');
var dataItem = tree.dataItem(e.node);
// You will then have data item, and can use
// the properties for whatever you need to do
}
}
关于events - 如何在TreeView kendo ui上获取选定节点的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21329451/
我是一名优秀的程序员,十分优秀!