Hi Team,
I searched a lot on this but could not find anything, so I am posting it here.
I am using an AutoCompleteExt ender in a user control which is in a master page. The page layout is designed byDIV tags. My code in that user control is somehting like..
----------------------------
----------------------------
When I type anything in the textbox, the auto dropdown does not appear fully becasue 2nd DIV tag hides or overlap the dropdown.
Please help me,
Thanks,
Manik
I searched a lot on this but could not find anything, so I am posting it here.
I am using an AutoCompleteExt ender in a user control which is in a master page. The page layout is designed byDIV tags. My code in that user control is somehting like..
----------------------------
Code:
<DIV> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <asp:TextBox ID="TextBox1" runat="server" Width="160px"></asp:TextBox> <cc1:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" MinimumPrefixLength="1" ServiceMethod="GetVendors" CompletionListItemCssClass="listItem" CompletionListCssClass="completionListElement" CompletionListHighlightedItemCssClass="highlightedListItem" ServicePath="http://webtest.ariba.com/ajax/webservice.asmx" TargetControlID="TextBox1" OnClientItemSelected="Test"> </cc1:AutoCompleteExtender> <asp:Button ID="btn" runat="server" OnClick="btn_Click" Text="Search" /> </DIV> <div>Rest of the page with multiple div tags</div>
When I type anything in the textbox, the auto dropdown does not appear fully becasue 2nd DIV tag hides or overlap the dropdown.
Please help me,
Thanks,
Manik
Comment