This question is locked. New answers and comments are not allowed.
Hello,
I use last version of kendoui and i have problem with TreeList component (asp-net.mvc on server and angularjs on client)
javascript
$scope.treelistOptions = { dataSource: {
transport: { read: { type:'GET', url: 'category-tree', } }, schema: { model: { Id: "categoryId", ParentId:"parentCategoryId", fields: { categoryId: { field: "categoryId", type: "number", nullable: false }, parentCategoryId: { field: "parentCategoryId", nullable: true }, name: { field: "name" },} } } }, columns: [ { field: "Name" }, ], };