We are using RadGrid to display data on ASPX page where AJAX is implemented using RadAjaxManager and asp:ScriptManager. We have a button on click of which we need to export grid data to PDF or Excel format. OnClick event of this button we have written following statement:
RadGrid1.MasterTableView.ExportToPdf();
But it does not work (File Open-Save dialogue box is not displayed.)
When we debugged, we can see that control goes to above statement.
When button is placed outside ScriptManager, it works(it shows file open-save box).
Do we need to make any changes in the behaviour of RadAjaxManager to achieve this? Kindly help.