dataUrlField String (default: null)

Sets the field of the data item that provides the link URL of the nodes.

Example

<input id="dropdowntree" style="width: 400px;">
<script>
    var items = [
        { text: "Tea", LinksTo: "http://tea.example.com" },
        { text: "Coffee", LinksTo: "http://coffee.example.com" }
    ];
    $("#dropdowntree").kendoDropDownTree({
        dataUrlField: "LinksTo",
        dataSource: items
    });
</script>
In this article