AjaxControlToolkit
AjaxControlToolkit copied to clipboard
AutoComplete Extender fills in IE11 but not in Chrome or Edge
I'm using Ajax Control Toolkit v20 in an ASP.Net 4 web page. Specifically, I'm using the AutoComplete Extender. It works fine in IE11 but when I run it in Chrome or Edge the list of items does not appear. The Service Method does fire and retrieve data, but no popup shows up. I've added z-index: 10000001;
and position: relative;
to each of the css classes I'm using for the extender, but the behavior doesn't change. Here's my front-end code:
`<asp:Panel ID="panelMatter" runat="server" CssClass="modalPopupAttorneys" align="center">
Select a Client / Matter Below ![]() <ajax:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="txtClient" MinimumPrefixLength="1" EnableCaching="true" CompletionSetCount="10" CompletionInterval="1000" ServiceMethod="GetClient" CompletionListCssClass="list2" CompletionListItemCssClass="listitem2" CompletionListHighlightedItemCssClass="hoverlistitem2"> </ajax:AutoCompleteExtender> <asp:Label ID="LblClient" runat="server" Width="595px" Text="Client"></asp:Label>
` And here's my server-side code:
`[System.Web.Services.WebMethod]
[System.Web.Script.Services.ScriptMethod()]
public static List
|