This is a migrated thread and some comments may be shown as answers.

Notify when popup closes completely

2 Answers 29 Views
AutoComplete
This is a migrated thread and some comments may be shown as answers.
Abhay
Top achievements
Rank 1
Abhay asked on 01 Sep 2015, 10:08 AM

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);

2 Answers, 1 is accepted

Sort by
0
Plamen Lazarov
Telerik team
answered on 03 Sep 2015, 10:32 AM

Hello Abhay,

I replied to the support thread you have opened on the same subject. If needed, please continue our discussion there in order to avoid duplication. Please avoid cross-posting duplicate questions in multiple threads. Thank you.

Regards,
Plamen Lazarov
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
0
Abhay
Top achievements
Rank 1
answered on 03 Sep 2015, 11:07 AM
I thought there was some failure when trying to do post here.Didn't see any message when post was done.
Tags
AutoComplete
Asked by
Abhay
Top achievements
Rank 1
Answers by
Plamen Lazarov
Telerik team
Abhay
Top achievements
Rank 1
Share this question
or