New to Kendo UI for jQueryStart a free 30-day trial

DataTextField

configuration

Sets the field of the data item that provides the text content of the nodes. If an array, each level uses the field that is at the same index in the array, or the last item in the array.

Important In case when array is used, filter is not supported because

hierarchical data source does not support filtering by different fields yet.

dataTextField

String|Array

Default: null

<input id="dropdowntree"/>

<script>
$("#dropdowntree").kendoDropDownTree({
    dataSource: [
        { Name: "Parent1", Id: 1 },
        { Name: "Parent2", Id: 2 }
    ],
    dataTextField: "Name",
    dataValueField: "Id"
});
</script>
Not finding the help you need?
Contact Support