I have a following configuration of controls and I can't get the desired result.
ParentPage (aspx)
- RadWindowManager
- RadWindow
Invokes the page below as a RadWindow
PopupWindow (aspx)
- RadWindowManager
- RadWindow
PopupWindow invokes another pick-list window that is supposed to be on
top of PopupWindow but it pops UNDER the PopupWindow instead.
Here's the invocation code:
function OpenPopup2()
{
var parentWindow = GetRadWindow().BrowserWindow;
var windowManager = parentWindow.GetRadWindowManager();
var objWindow = windowManager.open("/PopupWindow2.aspx", "Popupwindow2");
objWindow.center();
objWindow.SetActive(true);
return false;
}
Does this problem have to do with the fact that the popup is being invoked within an IFRAME?
From the parent window I can invoke indefinite number of child windows with correct display Z-order but it seems like I can't do it properly programmatically from a child IFRAME.
Any workaround for this?
Thanks!
ParentPage (aspx)
- RadWindowManager
- RadWindow
Invokes the page below as a RadWindow
PopupWindow (aspx)
- RadWindowManager
- RadWindow
PopupWindow invokes another pick-list window that is supposed to be on
top of PopupWindow but it pops UNDER the PopupWindow instead.
Here's the invocation code:
function OpenPopup2()
{
var parentWindow = GetRadWindow().BrowserWindow;
var windowManager = parentWindow.GetRadWindowManager();
var objWindow = windowManager.open("/PopupWindow2.aspx", "Popupwindow2");
objWindow.center();
objWindow.SetActive(true);
return false;
}
Does this problem have to do with the fact that the popup is being invoked within an IFRAME?
From the parent window I can invoke indefinite number of child windows with correct display Z-order but it seems like I can't do it properly programmatically from a child IFRAME.
Any workaround for this?
Thanks!