pop up window which will not close. The only way to close the RadWindow is window.Close () from client side which is not working in this case.
function GetRadWindow() {
var oWindow = null;
if (window.radWindow) oWindow = window.radWindow;
else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
return oWindow;
}
function CloseWin() {
//Get the RadWindow
var oWindow = GetRadWindow();
//Call its Close() method
if (oWindow) {
oWindow.Close();
// alert(oWindow.isClosed())
}
//GetRadWindow().close();
// return false;
//oWindow.close();
}
nothing works.