I have a multi-column combobox showing 3 items in the dropdown. When going to select an item the highlight bar is very thin, bounces around a lot and rarely ends up on the item to be clicked/selected. See attached image.
<telerik:RadComboBox ID="radcmbProduct" runat="server" Width="400px" Height="200px" AllowCustomText="false" EmptyMessage="Select a Product" EnableLoadOnDemand="True" ShowMoreResultsBox="true" DropDownWidth="600px" EnableVirtualScrolling="true" HighlightTemplatedItems="true" MarkFirstMatch="true" NoWrap="true" OnItemsRequested="radcmbProduct_ItemsRequested" OnItemDataBound="radcmbProduct_ItemDataBound"> <HeaderTemplate> <ul> <li class="col1">Title</li> <li class="col2">System</li> <li class="col3">Price</li> </ul> </HeaderTemplate> <ItemTemplate> <ul> <li class="col1"> <%# DataBinder.Eval(Container.DataItem, "Title") %></li> <li class="col2"> <%# DataBinder.Eval(Container.DataItem, "GameSystemName") %></li> <li class="col3"> <%# DataBinder.Eval(Container.DataItem, "DisplayPrice")%></li> </ul> </ItemTemplate> </telerik:RadComboBox>