close

Closes the widget popup.

Example - close the suggestion popup

<input id="dropdowntree" />

<script>
    $("#dropdowntree").kendoDropDownTree();
    var dropdowntree = $("#dropdowntree").data("kendoDropDownTree");
    // Search for items starting with "A" - will open the suggestion popup and show "Apples"
    dropdowntree.open();
    // Close the suggestion popup
    setTimeout(function () {
        dropdowntree.close();
    },2000)

</script>
In this article