dataUrlFieldString
(default: null)
Sets the field of the data item that provides the link URL of the nodes.
Example
<div id="treeview"></div>
<script>
var items = [
{ text: "Tea", LinksTo: "http://tea.example.com" },
{ text: "Coffee", LinksTo: "http://coffee.example.com" }
];
$("#treeview").kendoTreeView({
dataUrlField: "LinksTo",
dataSource: items
});
</script>
In this article