Good day!
I'm trying to call a function in a RadWindow with the follow code:
I'm trying to call a function in a RadWindow with the follow code:
var
dialog = oWnd.get_windowManager().getWindowByName("MyWindow");
var contentFrm = dialog.get_contentFrame();
var contentWin = contentFrm.contentWindow;
contentWin.foo();
In IE 8, I initially got an error that the method does not exist. When I did it the second time, it worked. But in Chrome, it completely doesn't work. Why is this so?
Thanks.