Hi,
I am launching a RadWindow using the following Javascript function:
In FireFox and Chrome, things work just fine.
However, in IE8 the page on top of which the window pops up is blank.
See the attached screenshots.
Any suggestions?
Thanks in advance.
Jim
I am launching a RadWindow using the following Javascript function:
function openRadWindow(url,title,width,height) { var oWindow = window.radopen(url, null); oWindow.set_autoSize(true); oWindow.set_behaviors(Telerik.Web.UI.WindowBehaviors.Move + Telerik.Web.UI.WindowBehaviors.Resize); oWindow.set_modal(true); oWindow.set_centerIfModal(true); oWindow.set_title(title); oWindow.set_visibleStatusbar(false); oWindow.add_close(OnClientClose); oWindow.set_destroyOnClose(true); // Added to see if it fixes the entire screen becoming modal upon second launching //oWindow.set_height(height); //oWindow.set_width(width); var popupElem = oWindow.get_popupElement(); popupElem.style.zIndex = "" + 7001; }In FireFox and Chrome, things work just fine.
However, in IE8 the page on top of which the window pops up is blank.
See the attached screenshots.
Any suggestions?
Thanks in advance.
Jim