This is a migrated thread and some comments may be shown as answers.

[Solved] Combo dropdown behind radWindow

2 Answers 296 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
James
Top achievements
Rank 1
James asked on 16 Jan 2008, 04:45 PM
Hi,

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>

2 Answers, 1 is accepted

Sort by
0
Veselin Vasilev
Telerik team
answered on 18 Jan 2008, 04:56 PM
Hi Bobby,

Please try with a bigger ZIndex value. I tested with ZIndex="100000" and it worked for me.

Let us know if this helps.


Best wishes,
Veskoni
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
James
Top achievements
Rank 1
answered on 21 Jan 2008, 08:28 AM
Hi,

Doh, why didn't I think of that. Just tried it with 10000 and it works fine. Thanks for the reply.

Regards

Bobby
Tags
ComboBox
Asked by
James
Top achievements
Rank 1
Answers by
Veselin Vasilev
Telerik team
James
Top achievements
Rank 1
Share this question
or