IE problems with AjaxControl Toolkit's AutoComplete extender
1 min read
1 min read
<cc1:AutoCompleteExtender2 ID="aceBirthPlace" runat="server" SecondControlElementID="txbBirthPlaceCode"Today however I recognized a problem with the CompletionInterval property.
TargetControlID="txbBirthPlace" ServicePath="~/FormsControls/AutoCompleteLists.asmx"
ServiceMethod="GetAllMunicipality" MinimumPrefixLength="3" CompletionInterval="100"
EnableCaching="true" CompletionSetCount="20" FirstRowSelected="true">
</cc1:AutoCompleteExtender2>
CompletionInterval: Time in milliseconds when the timer will kick in to get suggestions using the web service.Since we got some complaints that the appearance of the autocomplete box takes to long, we set the CompletionInterval to "0" (zero). In that way, once the MinimumPrefixLength is reached the javascript starts to call the webservice. Everything worked fine with Firefox but - as usual - on IE no autocomplete entry was shown at all. Changing the value to "100" made everything work again. I don't know the exact reason (don't have the time to check it out).