or
-- This represents my entity and view model, both the fields are the same but have slightly different names
public class Car { public string Name { get; set; }}public class CarViewModel { public string CarName { get; set; }}var theTree = $("#treeview").kendoTreeView({ dataSource: folderArray, template: $("#foldersTemplate").html(), expand: function(e) { code for grabbing any sub-folders. }, select : function(e) { var treeviewInner = e.sender, idFolder = treeviewInner.dataItem(e.node).id; /* set-up angularjs controller scope */ window.location.href = "#/folder/" + idFolder; //navigates to the proper folder gridview when node seleced. }});