Hi all,
A little problem here. How it should: Dropdown values displays "Fish" and "Water". Upon selection, the combobox should display either "F" or "W".
The following code works correctly in Firefox. In IE7, the dropdown is correct but the display is not.
Thanks,
Khanh
A little problem here. How it should: Dropdown values displays "Fish" and "Water". Upon selection, the combobox should display either "F" or "W".
The following code works correctly in Firefox. In IE7, the dropdown is correct but the display is not.
<telerik:RadComboBox ID="Entity" runat="server" MarkFirstMatch="true" Width="50px" |
TabIndex="1" AutoPostBack="false" DropDownWidth="70px" MaxLength="1" |
EnableLoadOnDemand="false" |
Height="50px" AllowCustomText="false" ShowMoreResultsBox="False" |
HighlightTemplatedItems="true"> |
<ItemTemplate> |
<div> |
<%#DataBinder.Eval(Container, "Text")%> |
</div> |
</ItemTemplate> |
<Items> |
<telerik:RadComboBoxItem runat="server" Text="Fish" Value="F" /> |
<telerik:RadComboBoxItem runat="server" Text="Water" Value="W" /> |
</Items> |
</telerik:RadComboBox> |
Thanks,
Khanh