I have the following combobox that works fine except in IE6, both vertical and horizontal scrollbars appear. They don't in IE7 or FF:
<telerik:RadComboBox ID="PresetsComboBox" runat="server" Skin="WebBlue" OnSelectedIndexChanged="PresetsComboBox_SelectedIndexChanged"
EnableLoadOnDemand="true" DropDownWidth="300px" MarkFirstMatch="True" AutoPostBack="True" Width="150px"
Text="custom">
<CollapseAnimation Duration="200" Type="OutQuint" />
<HeaderTemplate>
<table style="width: 300px" cellspacing="0" cellpadding="0" class="bodyTextBold">
<tr>
<td style="width: 100px;">
Options
</td>
<td style="width: 100px;">
Start Date
</td>
<td style="width: 100px;">
End Date
</td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 300px" cellspacing="0" cellpadding="0" class="bodyText">
<tr>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Text")%>
</td>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Attributes['Start']")%>
</td>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Attributes['End']")%>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
Any thoughts?
Thanks, Dave
<telerik:RadComboBox ID="PresetsComboBox" runat="server" Skin="WebBlue" OnSelectedIndexChanged="PresetsComboBox_SelectedIndexChanged"
EnableLoadOnDemand="true" DropDownWidth="300px" MarkFirstMatch="True" AutoPostBack="True" Width="150px"
Text="custom">
<CollapseAnimation Duration="200" Type="OutQuint" />
<HeaderTemplate>
<table style="width: 300px" cellspacing="0" cellpadding="0" class="bodyTextBold">
<tr>
<td style="width: 100px;">
Options
</td>
<td style="width: 100px;">
Start Date
</td>
<td style="width: 100px;">
End Date
</td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 300px" cellspacing="0" cellpadding="0" class="bodyText">
<tr>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Text")%>
</td>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Attributes['Start']")%>
</td>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Attributes['End']")%>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
Any thoughts?
Thanks, Dave
