1
您好我正在填充一個動態的XML文件到telerik treeview如層次結構樹視圖如下。如何獲得Telerik樹形視圖的層次結構級別
Modules //root node
* Organization //Parent node
*Policy //Child of Organization
*Transports
* Employess
*Salary
* Rewards
*Winners
當我要選擇模塊 - >組織 - >政策,我想在我的客戶端事件讓這個層次,但現在我得到的最後一個節點的值只能作爲「政策」。我想要得到這個階層的完整路徑。
而我的客戶端事件的代碼是:
function onSelect(e) {
debugger;
var tv = $('#HierarchyView').data('tTreeView');
var file = tv.getItemValue(e.item); // Here I am getting the last node name as "Policy", I want to get it as Modules-> Organization -> Policy
var nodeElement = e.item;
}
誰能告訴我得到那個層次的方式嗎?這很緊急。
謝謝。