I've recently installed Q3 of the Prometheus tools and am now converting the previous non-prometheus version of the RadCombo control.
I previously came across the problem with the dropdown portion of the combo appearing behind a radwindow. This, I fixed by setting the ZIndex to 90000. This doesn't seem to work with the new version. I've attached a sample page below this message (just run, drag the window under the combo, then expand the combo).
Do I need to do something different with this Q3 version to allow the dropdown in front of the radwindow?
Regards
Bobby
<%
@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<%
@ Register Assembly="RadComboBox.Net2" Namespace="Telerik.WebControls" TagPrefix="radC" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>Untitled Page</title>
</
head>
<
body>
<
script language="javascript" type="text/javascript" >
</
script>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<radC:RadComboBox ID="RadComboBox1" runat="server" SkinsPath="~/RadControls/ComboBox/Skins" ZIndex="90000"
Width="150px">
<Items>
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem1" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem2" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem3" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem4" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem5" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem6" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem7" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem8" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem9" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem10" />
<radC:RadComboBoxItem runat="server" Text="RadComboBoxItem11" />
</Items>
</radC:RadComboBox>
<div>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" VisibleOnPageLoad="True">
<Windows>
<telerik:RadWindow runat="server" Animation="None" Behavior="Default" Behaviors="Default"
InitialBehavior="None" InitialBehaviors="None" Left="" NavigateUrl="" Style="display: none;"
Top="">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
</div>
</form>
</
body>
</
html>