I'm trying to use the Kendo TreeView and I'm having absolutely no luck binding to a local data source. I have a simple asp.net web forms page and I copied and pasted the code from the online demos, but nothing I do will get this working. Any ideas?\[code\]<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title>Kendo TreeView Demo</title> <link href="http://stackoverflow.com/questions/12694773/styles/kendo/kendo.common.min.css" rel="stylesheet" /> <link href="http://stackoverflow.com/questions/12694773/styles/kendo/kendo.default.min.css" rel="stylesheet" /> <style type="text/css"> * { font-family: "Segoe UI", Arial, Helvetica, Sans-Serif; font-size: 12px; } </style> <script type="text/javascript" src="http://stackoverflow.com/questions/12694773/scripts/jquery.min.js"></script> <script type="text/javascript" src="http://stackoverflow.com/questions/12694773/scripts/kendo/kendo.all.min.js"></script> <script type="text/javascript" src="http://stackoverflow.com/questions/12694773/scripts/kendo/kendo.data.min.js"></script> <script type="text/javascript"> $(document).ready(function () { var inlineDefault = new kendo.data.HierarchicalDataSource( { data: [ { text: "Furniture", items: [ { text: "Tables & Chairs" }, { text: "Sofas" }, { text: "Occasional Furniture" } ] }, { text: "Decor", items: [ { text: "Bed Linen" }, { text: "Curtains & Blinds" }, { text: "Carpets" } ] } ] }); $("#treeview-left").kendoTreeView( { dataSource: inlineDefault }); }); </script></head><body> <form id="form1" runat="server"> <div> <div id="treeview-left"></div> </div> </form></body></html>\[/code\]