I have two autocomplete extenders on the aspx page.
<div class="wrapper left">
<div class="col214 left label">
Location Name
</div>
<div class="col234 left">
<asp:TextBox ID="txtLocationName" CssClass="col225 tb" runat="server"></asp:TextBox>
<loc:AutoCompleteExtender ServiceMethod = "getLocationDetails" MinimumPrefixLength="4" CompletionInterval="10" EnableCaching="true" CompletionSetCount="10"
TargetControlID="txtLocationName" ID="AutoCompleteLocation" runat="server" FirstRowSelected="false" DelimiterCharacters="," ShowOnlyCurrentWordInCompletionListItem="true" ></loc:AutoCompleteExtender>
</div>
</div>
<br />
<div class="wrapper left">
<div class="col214 left label">
Clinician Surname
</div>
<div class="col234 left">
<asp:TextBox ID="txtClinicianSurname" CssClass="col225 tb" runat="server"></asp:TextBox>
<sur:AutoCompleteExtender ServiceMethod="getClinicianDetails" MinimumPrefixLength="2" CompletionInterval="100" EnableCaching="true" CompletionSetCount="10"
TargetControlID="txtClinicianSurname" ID="AutoCompletSurname" runat="server" FirstRowSelected="false" DelimiterCharacters="," ShowOnlyCurrentWordInCompletionListItem="true" ></sur:AutoCompleteExtender>
</div>
</div>
They are working fine on my localhost when displaying the list items. Once I deployed onto test environment, the list items displayed on the chrome browser are fine, but on the IE, the second list item is missing due to the textbox below it at the position of second list item. The second textbox is appearing in place of the second list item of the first textbox autocompleteextender. In the image attached, list item 'test 2' is missing on IE,however second textbox is appearing in place of it. Could anyone please help.
Thanks in advance. images of chrome and IE