messages.noData String (default: "No data found.")

The text message shown in the noDataTemplate when no data is available in the widget drop-down.

Example - customize noData message

<input id="dropdowntree" />
<script>
    $("#dropdowntree").kendoDropDownTree({
        dataSource: [],
        messages: {
            noData: "There is no data!"
        }
    });
</script>
In this article