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

radconfirm above a RadWindow

3 Answers 128 Views
Window
This is a migrated thread and some comments may be shown as answers.
Brian Mains
Top achievements
Rank 1
Brian Mains asked on 06 Apr 2011, 09:59 PM
Hello,

I have a page that pops up a RadWindow.  Then the page pops up a radconfirm.  I want the radconfirm to appear over the RadWindow, but it appears beneath the RadWindow.  Is there anyway to give the radconfirm a higher z-index?

Thanks.

3 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 07 Apr 2011, 11:02 AM
Hello Brian,

Try setting "ShowOnTopWhenMaximized" to false to the RadWindowManager that you are using. If this doesn't help, please provide some more details about your exact setup and how exactly (in terms of code) you open the radconfirm() window.


Kind regards,
Georgi Tunev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Brian Mains
Top achievements
Rank 1
answered on 07 Apr 2011, 01:21 PM
Hey,

The RadWindow is a floating rad window, with a width and height of 500px, so it's not maximized.  It pops up, then the radconfirm, and the radconfirm is underneath.  I open the radconfirm with the radconfirm JS method, handler back, and a 500 width/100 height statement.  Is there a way to set the z-index in the radconfirm method?  I didn't see it in documentation.

Thanks.
0
Svetlina Anati
Telerik team
answered on 12 Apr 2011, 02:53 PM
Hello Brian,

I suggest to open the confirm with a small timeout, actually 0 will also do the trick:

Copy Code
setTimeout(function ()
{
radconfirm("Are you sure you want to close this window?", callbackFunction, 300, 100, null, "Customer Form Window");
}, 0);

 Please, test this suggestion and let me know how it goes.

Greetings,
Svetlina
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Window
Asked by
Brian Mains
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Brian Mains
Top achievements
Rank 1
Svetlina Anati
Telerik team
Share this question
or