I used below for my first radwindow pop up
On the 1st radwindow pop up, I have a radupload button and want to save the file and open second radwindow for message/report display, I tried lots ways, can't open the second radwindow.
I suppose to use server side code to open it.
Tried:
But not work. Please help!
this.imgCreateStoreList.Attributes.Add("onclick", "openWinEvents('Events.aspx?Designator=" + desParameter + "&ctProcessId=" + ctProcessId + "&rnd=" + System.Guid.NewGuid() + "'); return false;");
function openWinEvents(parameter) { var wnd = $find('<%=RadWindow1.ClientID %>'); if (wnd != null) { wnd.setUrl("/Builder/" + parameter + ""); wnd.setSize(800, 600); wnd.set_modal(true); wnd.set_iconUrl("/img/radwindowicon.gif"); wnd.Show(); } }I suppose to use server side code to open it.
Tried:
RadWindow CommPromptWindow = (RadWindow)Page.Master.FindControl("EventsPromptWindow"); CommPromptWindow.VisibleOnPageLoad = true;