or
var homogeneous = new kendo.data.HierarchicalDataSource({ transport: { read: { url: 'http://localhost:500/api/users/', dataType: "json" } }, schema: { model: { id: "id", hasChildren: "load_on_demand" } }});$("#tree").kendoTreeView({ dataSource: homogeneous, dataTextField: "label"});[{"id":12345, "label":"NODE 1", "load_on_demand":true}]$(document).ready(function () { $("#listView").kendoListView({ dataBound: function (e) { var listView = $("#listview"); if (!listView) { alert("listView null"); return; } var listData = listView.data("kendoListView"); if (!listData) { alert("listData null"); return; } } });

I have been producing Telerik MVC Extensions with the Forest theme for several months now. Finally a new project came along and I decided to use Kendo UI Web. The problem is every time I show a demo, I get comments on how much better my peers like the old MVC Forest theme.
Has anyone done the work to recreate the Forest Theme for Kendo Web?