Cannot see text inside radcombobox

0 Answers 172 Views
ComboBox
Cesar
Top achievements
Rank 1
Cesar asked on 08 Jun 2021, 06:00 PM | edited on 08 Jun 2021, 06:03 PM

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>

Vessy
Telerik team
commented on 09 Jun 2021, 10:15 AM

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?

No answers yet. Maybe you can help?

Tags
ComboBox
Asked by
Cesar
Top achievements
Rank 1
Share this question
or