Hello
After upgrade from release 2011 Q2 to Q3, RadWindows seems not to maximize RadWindow in IE 8/IE 9 ( IE8/9 in the compatibility mode are ok).
It seems to be maximized and then shrinks. RadWindow will maximize itself just after browser is resized.
javascript:
function popup(windowname, url) {
var oManager = GetRadWindowManager();
var oWnd = oManager.GetWindowByName(windowname);
oWnd.show();
oWnd.setUrl(url);
oWnd.Center();
oWnd.Maximize();
HideOverlay();
}
function HideOverlay() {
var overlay = $('div.TelerikModalOverlay');
if (overlay != null) {
overlay.hide();
}
}
Changes in code like removing functions or changing order had no positive effect.
According to the Release Notes, there was some fix about Maximize - shall I change the code somehow to adjust to such change or this could be a bug?
After upgrade from release 2011 Q2 to Q3, RadWindows seems not to maximize RadWindow in IE 8/IE 9 ( IE8/9 in the compatibility mode are ok).
It seems to be maximized and then shrinks. RadWindow will maximize itself just after browser is resized.
javascript:
function popup(windowname, url) {
var oManager = GetRadWindowManager();
var oWnd = oManager.GetWindowByName(windowname);
oWnd.show();
oWnd.setUrl(url);
oWnd.Center();
oWnd.Maximize();
HideOverlay();
}
function HideOverlay() {
var overlay = $('div.TelerikModalOverlay');
if (overlay != null) {
overlay.hide();
}
}
Changes in code like removing functions or changing order had no positive effect.
According to the Release Notes, there was some fix about Maximize - shall I change the code somehow to adjust to such change or this could be a bug?