In my OnClientClose client event of the RadWindowManager, I have codes that opens up another form using
var w = window.open(.....);
w.focus();
the window opens as it should, however, the focus is always returned to the calling form (i.e.: the window opens, but is immediately minimized). This only happens if window.open is called from the RadWindowManager's OnClientClose event. If I use the same code (var w = window.open(....); w.focus();) elsewhere, it works as it should. Is there something with RadWindowManager that forces focus back to the main form at the end of OnClientClose event? If so, how can I overcome that?
Thanks!
var w = window.open(.....);
w.focus();
the window opens as it should, however, the focus is always returned to the calling form (i.e.: the window opens, but is immediately minimized). This only happens if window.open is called from the RadWindowManager's OnClientClose event. If I use the same code (var w = window.open(....); w.focus();) elsewhere, it works as it should. Is there something with RadWindowManager that forces focus back to the main form at the end of OnClientClose event? If so, how can I overcome that?
Thanks!