我正在研究 kendo TreeView 控件并尝试在网格中显示树结构,但我总是从控件中收到错误没有要显示的记录。
任何人都可以帮我找出我的错误。
<body>
<div id="treelist"></div>
<script>
$(document).ready(function () {
var dataSource = new kendo.data.TreeListDataSource({
data: [
{ "UserId": 0, "ParentUserId": null, "Name": "Abhishek" },
{ "UserId": 1, "ParentUserId": 0, "Name": "Ravi" },
{ "UserId": 2, "ParentUserId": 1, "Name": "Manish" },
{ "UserId": 3, "ParentUserId": 1, "Name": "Anuj" },
{ "UserId": 4, "ParentUserId": null, "Name": "Shiv" },
{ "UserId": 5, "ParentUserId": null, "Name": "Ram" },
{ "UserId": 6, "ParentUserId": 5, "Name": "Kashi" },
{ "UserId": 7, "ParentUserId": 5, "Name": "Ekansh" },
{ "UserId": 8, "ParentUserId": 7, "Name": "Tanmay" },
{ "UserId": 9, "ParentUserId": 7, "Name": "Rahul" }
],
schema: {
model: {
id: "UserId",
parentId: "ParentUserId",
fields: {
UserId: { type: "number", nullable: false },
ParentUserId: { field: "ParentUserId", nullable: true }
},
}
}
});
$("#treelist").kendoTreeList({
dataSource: dataSource,
height: 540,
columns: [{ field: "Name" }]
});
});
</script>
</body>
非常感谢任何帮助
提前致谢