Hi
I have a RadComboBox that is populated on demand using the OnItemsRequested call back, with the following ItemTemplate:
The only problem is that while the RadCombo is loading, the loading message is not completely shown. The heighth of the results pane is not tall enough to show the loading message. Vertical up and down scroll arrows appear and pressing down will allow you to see the loading message. On first glance though, it is hard to see that the loading message is being displayed.
Is there anyway to make it so the whole loading message item is visible? Also, I'm using the default loading text, nothing custom.
Thanks for any help
I have a RadComboBox that is populated on demand using the OnItemsRequested call back, with the following ItemTemplate:
<ItemTemplate> |
<asp:Label ID="uxLabel_SearchItem" runat="server" CssClass='<%# Eval("CssClass") %>' |
Text='<%# Eval("Text") %>' ToolTip='<%# Eval("ToolTip") %>' |
onmouseover="swapLiStyle(this, 'hoverLi')" onmouseout="swapLiStyle(this, 'regularLi')"></asp:Label> |
</ItemTemplate> |
<Items> |
<telerik:RadComboBoxItem></telerik:RadComboBoxItem> |
</Items> |
The only problem is that while the RadCombo is loading, the loading message is not completely shown. The heighth of the results pane is not tall enough to show the loading message. Vertical up and down scroll arrows appear and pressing down will allow you to see the loading message. On first glance though, it is hard to see that the loading message is being displayed.
Is there anyway to make it so the whole loading message item is visible? Also, I'm using the default loading text, nothing custom.
Thanks for any help