I have a client-side handler for OnClientClick for a button. Here is what it looks like:
Currently the server side handler for the ajaxRequest has all of the code commented out to help solve the issue. What I see happen is that the radopen window shows and then immediately closes. If I comment out the ajaxManager.ajaxRequest code the window shows and stays. Why is this? Is there a way to do the ajaxRequest and then the radopen? The ajaxRequest server handler performs some tasks that the aspx page needs when it shows.
function
OpenReportWindow(nCompanyID, nDetailsID) {
var
ajaxManager = $find(
"<%= RadAjaxManager1.ClientID %>"
);
ajaxManager.ajaxRequest(
"Save"
);
var
wnd = window.radopen(
"/CharitableSponsorshipsReport.aspx"
,
null
);
//wnd.setSize(750, 550);
return
false
;
}
Currently the server side handler for the ajaxRequest has all of the code commented out to help solve the issue. What I see happen is that the radopen window shows and then immediately closes. If I comment out the ajaxManager.ajaxRequest code the window shows and stays. Why is this? Is there a way to do the ajaxRequest and then the radopen? The ajaxRequest server handler performs some tasks that the aspx page needs when it shows.