delay Number(default: 500)

Specifies the delay in milliseconds before the search-text typed by the end user is sent for filtering.

Example - set the delay

<input id="dropdownlist" />
<script>
$("#dropdownlist").kendoDropDownList({
    filter: true,
    delay: 1000 // wait 1 second before filtering with the user input
});
</script>
In this article