gpt4 book ai didi

javascript - 如何将本地和远程数据绑定(bind)到 Kendo DataSource

转载 作者:行者123 更新时间:2023-11-28 05:40:18 24 4
gpt4 key购买 nike

我想将本地和远程数据绑定(bind)到同一个 Kendo UI 控件。这里我使用 Kendo Treeview 。

enter image description here

这里前两个节点是硬编码的(本地数据),第三个需要来自数据库(远程数据)。那么现在如何处理这个问题。

$("#AftermarketTreeView").kendoTreeView({
dataTextField: ["text", "text", "MC_ANALYSIS_NAME"],
dataSource: {
data: [
{
text: "Initiate",
items: [
{ text: "Parts Selection", haschildren: false },
{ text: "Assumptions", haschildren: false },
{ text: "Team", haschildren: false },
]
},
{
text: "Analyze",
items: [
{ text: "Part Attributes", haschildren: false },
{ text: "Aftermarket Evaluation", haschildren: false }
]
},
{
text: "Monto Carlo",
items: [
{ text: "Monto Carlo", haschildren: true }

]
}
],
schema: {
model: {
hasChildren: "items",
children: {
schema: {
data: "items",
model: {
hasChildren: "haschildren",
children: {
schema: {
// override the schema.data setting from the parent
data: function (response) {
return response;
}
},
transport: {
read: {
url: ResolveUrl("/CreateMaintainAnalysis/GetMontoCarloData/"),
dataType: "jsonp",
data:onDataSendAnalysisID,
}
},
}
}
}
}

}
}
}
});

那么如何使用 Kendo TreeView 绑定(bind)它?

最佳答案

同一元素上不能同时拥有本地数据源和远程数据源。最好的选择是仅使用远程数据源,并让它返回您正在查找的所有选项。

关于javascript - 如何将本地和远程数据绑定(bind)到 Kendo DataSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38970739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com