function
openRadWindow(url, title, width, height) {
var
oManager = GetRadWindowManager();
oWnd = oManager.open(url,
null
);
oWnd.set_title(title);
oWnd.setSize(width, height);
oWnd.center();
}
The function GetRadWindowManager returns NULL in IE 11 (and probably 10). Both, Chrome and Firefox working fine. The Function is executed manually by clicking a button, so I'm sure the page is completely loaded.
I'm working with Telerik 2013.2 SP1. Is this fixed in current releases?