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

Window with Menu issue

4 Answers 272 Views
Window
This is a migrated thread and some comments may be shown as answers.
AdamL
Top achievements
Rank 1
AdamL asked on 26 Apr 2008, 12:34 PM
I have a rad Window for Ajax (formerly Prometheus) displaying onload of a pag.  The page calling the window has a menu at 100% width across the page.   I am encountering an issue where the menu does not display behind the window.  It is almost as if the z-index of the menu is less than the window and the menu overlaps the window.

If this a flaw with the control of am I doing something wrong.

- Adam

4 Answers, 1 is accepted

Sort by
0
George
Telerik team
answered on 29 Apr 2008, 11:48 AM
Hi Adam,

In the latest release of RadControls for ASP.Net AJAX we have changed the z-index of some controls as follows:

RadToolTip - 8000
RadMenu - 7000
RadCombo - 6000
RadDatePicker - 5000
RadColorPicker - 4000
RadWindow - 3000
RadSplitter - 2000
RadDock - 1000

In different scenarios, you may need to change these values in order to ensure that one specific control will be shown above the other - for example RadWindow over RadMenu. To make this process easier, from RadControls for ASP.NET AJAX Q1 2008, you can set the value of the z-index property of every control by using the common style property.
e.g.

style="z-index: 1000"

I hope this helps.

Best regards,
George
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Ashraf Fayad
Top achievements
Rank 1
answered on 08 May 2008, 09:06 AM
Hello,

I have the same problem. rad Menu displays on top of the rad Window. The attribute 'style' is not one of any control's properties. so this syntax is actually not vaild (at least from Visual Studio's point of view).

<Telerik:RadWindow ID="ProfileWindow" runat="server" Modal="true" style="z-index: 1000" />

Could you please show me how to implement this?

thanks

Ashraf

0
Georgi Tunev
Telerik team
answered on 08 May 2008, 10:38 AM
Hi Ashraf,

I see that George missed an important part of the information - we apologize for that.

Style="z-index:<some value>" can be set to the RadWindowManager only, not to the RadWindow control itself. This is because the z-index of the different RadWindows is dynamically changed - even if you have a RadWindow with z-index 100, it will be displayed over other RadWindows with higher z-index value, if active.

Example:

<telerik:RadWindowManager   
    style="z-index:90000"   
    ID="RadWindowManager1"   
    runat="server">  
</telerik:RadWindowManager> 



Regards,
Georgi Tunev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Darin Beard
Top achievements
Rank 2
answered on 23 Jul 2008, 03:50 AM
I know this thread is a couple of months old but I just wanted to add my experience here for those searching for a solution. I actually just changed the menu z-index to 2500 and that seems to have fixed it.
Tags
Window
Asked by
AdamL
Top achievements
Rank 1
Answers by
George
Telerik team
Ashraf Fayad
Top achievements
Rank 1
Georgi Tunev
Telerik team
Darin Beard
Top achievements
Rank 2
Share this question
or