0
我無法在kendo treedatasource中顯示值。這是Kendo TreeDataSourc的有效JSON嗎?這是一個適用於Kendo Datasource的有效JSON嗎?
"[{\"fields\": {\"tgtWeight\": 0.0, \"hasChildnode\": true, \"parent\": null, \"currWeight\": 0.0, \"classificationNameNode\": null, \"SSM\": \"ssm4\", \"ext_model_id\": 4}, \"model\": \"equity.usersecurityselectionmodel\", \"pk\": 14}]"
這是劍道的一面。
var dataSource = new kendo.data.TreeListDataSource({
transport: {
read: {
url: "../getModelTargetWeights?id="+id,
dataType: "json"
}
},
schema: {
model: {
id: "pk",
parentId: "parent",
fields: {
fields: { field: "fields"},
tgtWeight: {field: "tgtWeight", type :"number"}
}
}
}
});
$("#treeList").kendoTreeList({
dataSource: dataSource,
editable: true,
height: 540
Gene..thanks for the response.the haschildNode can be into the hasChildren member。 PareintId是父項。我不確定的是實際的字符串。它看起來是正確的,但Kendo無法解析它。 – Axwack
@Axwack我更新了回答 –
Gene ...非常感謝。你達人! – Axwack