I'm using ASP
VB .net 2008 and am just now venturing into the world of Ajax. I've tried a few different controls and they are working great. But, the ComboBox is giving me problems.
When it is first rendered it looks fine - pretty much like a standard DropDownList. But, when I click the down arrow to expand the list, the list is not connected to the original box - it shows up at the bottom of the page, and depending upon where the page is scrolled will show up only partially or not at all.
Hope that makes sense - sorry I don't have a screen scraper so I can show the behavior.
I've done something wrong, just don't know what - - Any Ideas??
Thanks
Tom
Here is code --
/
HTML Code:
<tr>
<td class="cells1" valign="top">
<asp:Label ID="lblRace" runat="server" CssClass="caption1" Width="41px" Height="6px">Race</asp:Label>
</td>
<td class="cells1" style="width: 19px">
<asp:ComboBox ID="cmbRace" runat="server" AutoCompleteMode="SuggestAppend"
BorderStyle="Solid" DropDownStyle="DropDown" AutoPostBack="true"
Visible="True">
<asp:ListItem Value="0">Yes</asp:ListItem>
<asp:ListItem Value="1">No</asp:ListItem>
<asp:ListItem Value="2">Maybe</asp:ListItem>
<asp:ListItem Value="3">I don not know</asp:ListItem>
</asp:ComboBox>
</td>
<td class="cells1" valign="bottom">
<asp:TextBox ID="txtOtherRace" TabIndex="18" runat="server" CssClass="value1" Width="453px"
Height="22px" MaxLength="50" Visible="False"></asp:TextBox>
</td>
</tr>