close

Closes the widget popup.

Example - close the suggestion popup

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
  dataSource: [ "Apples", "Oranges" ]
});
var dropdownlist = $("#dropdownlist").data("kendoDropDownList");
// Search for items starting with "A" - will open the suggestion popup and show "Apples"
dropdownlist.search("A");
// Close the suggestion popup
dropdownlist.close();
</script>
In this article