c# - ASP.Net Ajax ComboBox Autocomplete Internet Explorer 11 Issue -


i have straight-forward ajax combobox within asp.net web application bound array of list items:

listitem[] testitems = gettestitems(); test.items.addrange(testitems);  <ajaxtoolkit:combobox id="test" runat="server" autocompletemode="suggestappend" dropdownstyle="simple" maxlength="9999"> </ajaxtoolkit:combobox> 

using firefox, chrome , safari, works expected i.e. start typing , auto complete mode finds , highlights closest match.

example in chrome

however, using internet explorer 11, start typing , nothing happens. list of items appears no autocomplete or selection happens.

example internet explorer 11

does know if or how can fixed?

cheers john

what jquery version use?

this was broken before version 1.8.2.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -