我正在使用kendoTreeView。我要在选择一个节点时获取unitId。
这是我的代码。
$("#treeview").kendoTreeView({
dataSource: dataSource,
dataTextField: "name",
dataValueField: 'unitId'
});
dataSource示例:
{
"rows": [{
"_token": "8cfd3e2133d936a6a65c6f7cfb80268a",
"objectVersionNumber": null,
"unitId": 10002,
"parentId": 10001,
"unitCode": "100000",
"name": "Hand",
"description": null,
"managerPosition": null,
"companyId": null,
"enabledFlag": null,
"unitCategory": null,
"unitType": null,
"positionName": null,
"parentName": null,
"parentCode": null,
"hasChildren": true
}],
"success": true,
"total": 1
}
答案 0 :(得分:0)
您使用哪种树形视图方法捕获点击事件?您可以编写kendoTreeView提供的select事件,该事件将为您提供您单击/选择的节点的数据。您可以参考以下内容:https://docs.telerik.com/kendo-ui/api/javascript/ui/treeview/events/select
如果这对您不起作用,可以分享您的DOJO或jsFiddle,我可以进一步提供帮助。