messages.clear String (default: "clear")

The text message when hovering the clear button.

Example - customize clear message

<input id="dropdowntree" style="width: 400px;" />
<script>
    $("#dropdowntree").kendoDropDownTree({
        dataSource: [
            { id: 1, name: "Apples" },
            { id: 2, name: "Oranges" }
        ],
        dataTextField: "name",
        dataValueField: "id",
        messages: {
            clear: "clear!",
        }
    });
</script>
In this article