How to render a treeview using Angular and Kendo UI

angularjs, kendo-treeview, kendo-ui

Solution

I got it working via `k-options`.

http://jsfiddle.net/M84qj/1/

The only documentation I could find was this page, which, judging from your use of "things", you found as well :p

http://kendo-labs.github.io/angular-kendo/#/

Good luck with Kendo + Angular :)

Problem

I am having great difficulty trying to render a treeview with angular and kendo. Here is the code I have so far: ``` Website1.controller("FieldsController1", function ($scope) { $scope.things = { data: [ { text: "Furniture", items: [ { text: "Tables & Chairs" }, { text: "Sofas" }, { text: "Occasional Furniture" } ] }, { text: "Decor", items: [ { text: "Bed Linen" }, { text: "Curtains & Blinds" }, { text: "Carpets" } ] } ] }; ``` Above is the controller. And here is the markup. ``` <ul kendo-tree-view k-hierarchical-data-source="things"> </ul> ``` Also, is there any documentation on how to do this?

Original source