I have a page where It is possible to luanceh more than one radwindow, I am creating these windows in the following way,
The user can click a button which will open window 'a', they can then do something else that will cause window 'b' to open. When in window 'b' I would like to get hold of window 'a' to refresh the content. I would guess a way to find this is to find the window which is not selected, which would be window 'a'. I have no idea on how to do this, I can only seem to get hold of the current window when using GetRadWindow()
Any suggestions would be much appreciated.
var popup = window.radopen(Url, null);function GetRadWindow() { var oWindow = null; if (window.radWindow) oWindow = window.radWindow; else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; return oWindow;}