Click here to Skip to main content
16,020,565 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Radwindow gets open on a page , inside Radwindow another window is opening ,now I need to close
second Radwindow on esc key but Parent window gets closed instead of child window. Any Suggestion?
Posted
Comments
DamithSL 16-Jun-14 1:31am    
how you close the window? update the question with your code
Member 10261817 16-Jun-14 2:04am    
Opening Radwindow inside the user Control, user controls also gets open in Radwindow using function:
function View(id) {
var oSRFWin = GetRadWindow().get_windowManager();
setTimeout(function () {
SRFpopup = oSRFWin.open("/Project.aspx?ID=" + id, "win1");
oSRFWin.set_destroyOnClose(true);

}, 0);
}

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900