I've seen forum questions regarding this issue from several months ago.
Has a solution been found?
I am putting al dropdownlist inside an html table using a listsearchextender.
I have not modified the css, so it is using the sample that comes with the toolkit.
When I click on the dropdownlist, the search prompt displays above the table.
I also added several additional dropdownlists with extenders and they all put the search prompt above the table
Is there a work around to get the search prompt to display directly above the position of the dropdownlist regardless of what row it on in a table ?
Thanks.
Hi,
I tried what you described on the sample web site, but can't reproduce the issue. Here is the code I used:
<table>
<tr>
<td>
</td>
<td style="width: 103px">
aa</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td style="width: 103px">
bb</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td style="width: 103px">
<asp:DropDownList ID="DropDownList1" runat="server" Width="100px" /></td>
<td>
</td>
</tr>
</table>
<br />
<p>
<ajaxToolkit:ListSearchExtender ID="ListSearchExtender2" runat="server"
TargetControlID="DropDownList1" PromptCssClass="ListSearchExtenderPrompt">
</ajaxToolkit:ListSearchExtender>
</p>
No comments:
Post a Comment