我有綁定到遠程數據的劍道UI樹視圖;然而,當頂層物品顯示時,箭頭指示有子物品時,單擊箭頭除了旋轉之外什麼都不做 - 沒有展開來顯示子節點。任何幫助,將不勝感激。劍道UI樹形目錄未展開節點
我的代碼如下所示:
var industryTree = new kendo.data.HierarchicalDataSource({
transport: {
read: {
url: 'http://'+document.domain+'/services/TreeIndustries.php',
dataType: "json"
},
schema: {
model: {
id:"id"
}
}
}
});
我的樹初始化:
var industryTreeView=$("#industry-tree").kendoTreeView({
dataSource: industryTree,
dataTextField: ["text","text"]
});
的JSON返回正確驗證;任何人想要看看能不能點擊此處查看:
http://173.45.233.104/services/TreeIndustries.php
您是否嘗試過loadOnDemand財產按設置爲false:HTTP://docs.kendoui .COM/API /網絡/樹狀#配置-loadOnDemand – boniestlawyer