Is there a way I can know if suggestion popup has closed. I want this to have autocomplete to show up with new suggestion list after I have made a selection from popup.Currently I am using settimeout for a search method but it depends on timeout value I set and therefore fails sometime to open the popup for search.
below is my code snipped in the select event
var item = e.item;
var selection = item.text();
e.preventDefault();
var ​city = selection.concat(" & ");
e.sender.value(city );
$("#Item2_County").data("kendoAutoComplete").dataSource.read();
setTimeout(function () { $("#Item2_County").data("kendoAutoComplete").search(city) }, 500);