Hello Telerik Team,
Is there any way to pop a RadWindow out of another RadWindow?
What i have is a button that opens a Radwindow, in this RadWindow is an aspx with an image on it, when the user clicks the image another RadWindow will open. The only problem i have is that the second RadWindow (When you click on the image) opens and is confined with the first RadWindow. Is there anyway to get it to open as a separate RadWindow?
Thanks in Advance
Ian
Is there any way to pop a RadWindow out of another RadWindow?
What i have is a button that opens a Radwindow, in this RadWindow is an aspx with an image on it, when the user clicks the image another RadWindow will open. The only problem i have is that the second RadWindow (When you click on the image) opens and is confined with the first RadWindow. Is there anyway to get it to open as a separate RadWindow?
Thanks in Advance
Ian
5 Answers, 1 is accepted
0
Accepted
Hello Ian,
I believe that the following KB will be of help:
(ID#665) Opening a RadWindow from within RadWindow
Greetings,
Georgi Tunev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
I believe that the following KB will be of help:
(ID#665) Opening a RadWindow from within RadWindow
Greetings,
Georgi Tunev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Ian
Top achievements
Rank 1
answered on 07 Aug 2008, 09:11 AM
Cheers for that it helped alot
Ian
Ian
0

Ian
Top achievements
Rank 1
answered on 07 Aug 2008, 09:22 AM
although the only problem i have now is the second RadWindow is opening behind the first RadWindow. I tried using -
oBrowserWnd.radopen("
http://www.google.com?", "RadWindow1").setActive();
but that had no effect.
0
Hi Ian,
Try calling setActive() with a small timeout - actually a timeout of 0ms should do the trick.
e.g.
var oWnd = oBrowserWnd.radopen("mypage.aspx", "MyWindow");
window.setTimeout(function()
{
oWnd.setActive(true);
},0);
Kind regards,
Georgi Tunev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Try calling setActive() with a small timeout - actually a timeout of 0ms should do the trick.
e.g.
var oWnd = oBrowserWnd.radopen("mypage.aspx", "MyWindow");
window.setTimeout(function()
{
oWnd.setActive(true);
},0);
Kind regards,
Georgi Tunev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Ian
Top achievements
Rank 1
answered on 07 Aug 2008, 11:11 AM
cheers thats sorted it.