I am having an issue only in IE7, it works fine in IE8. The issue is that the drop down is only active when hovering over the text of the selected item not when over the rest of the drop down not even the arrow. I have added screenshots of what is happening also. The control is in a user control on a page with other user controls. The aspx is below:
<div id="LoadReportPanel"> <div style="float: right"> ... </div> <div style="float: right; padding-top: 2px;"> <div style="position: absolute; top: 38px; left: 4px; z-index: 9999999;"> ... </div> <asp:Label ID="Label1" runat="server" Text="Report Template: "></asp:Label> <telerik:RadComboBox ID="ReportTemplatesDropDown" runat="server" Width="300px" Height="250"> <ItemTemplate> <div id="ReportTemplatesDropDownTreeViewDIV"> <telerik:RadTreeView ID="ReportTemplatesDropDownTreeView" runat="server" Expanded="True"> </telerik:RadTreeView> </div> </ItemTemplate> <Items> <telerik:RadComboBoxItem runat="server" Text="Select a Report Template" /> </Items> </telerik:RadComboBox> </div> </div>