Hi,
I am invoking radwindow from code beind. I would like the freeze the parent window. I don't want the user to do any activity on the parent page when the window is open. How can i do it?
I am invoking radwindow from code beind. I would like the freeze the parent window. I don't want the user to do any activity on the parent page when the window is open. How can i do it?
ScriptManager.RegisterStartupScript(Page,
GetType(Page), "RadAlertScript", "Sys.Application.add_load(function(){var t=radopen('test.aspx?', null);t.setSize(1000,700);t.Center();});", True)
Thank you,