Hello!
I have added data to my radcombobox but when I open the combobox I can´t see data.
Does anybody has any idea about this?
<telerik:RadComboBox ID="rcbVehicleInfoMake" runat="server" Height="250px" Width="120px" Skin="Simple" EnableLoadOnDemand="True" AllowCustomText="False" ShowMoreResultsBox="True" ItemRequestTimeout="500" HighlightTemplatedItems="True" MarkFirstMatch="True" DropDownWidth="310px" SelectOnTab="True" OffsetX="0" ShowDropDownOnTextboxClick="True" ExternalCallBackPage="../RCBStreamers/VehicleMakes.aspx" OnItemsRequested="rcbVehicleInfoMake_ItemsRequested">
<HeaderTemplate>
<table style="width: 300px;">
<tr>
<th style="width: 350px; text-align: left;">
Description
</th>
<th style="width: 50px; text-align: left;">
Code
</th>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 300px; cursor: pointer;">
<tr>
<td style="width: 350px;">
<%#DataBinder.Eval(Container, "Attributes['MakeDesc']")%>
</td>
<td style="width: 50px;">
<%#DataBinder.Eval(Container, "Attributes['MakeCode']")%>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
Hi Cesar,
Looking at the rendered scrollbars, I assume that the items of the ComboBox are properly loaded, but their color is white. Can you, please, inspect the drop down elements and see if this is the case?
Can you remove temporary all custom CSS styles applied on the page and see if the issue persists?