Hi,
I'm upgrading RAD Grid from Q3 2007 release to Q2 2009 release. Now the "Export to excel" feature is not working after upgrading the control (earlier it was working fine).
Here is the scenario i'm looking for:
1. i've a button called 'Export' in a panel which will be show/hide based on the grid's visibility
2. the show/hide option is handled by the "RadAjaxManagerProxy"
3. once select a row and click on the 'Export', it should export the selected data to excel.
4. while debugging, the code is getting triggered but the 'open file' pop-up is not appearing.
Here is the code snipper i've used to export:
| rgMemberResult.ExportSettings.ExportOnlyData = true; |
| rgMemberResult.ExportSettings.IgnorePaging = true; |
| rgMemberResult.ExportSettings.OpenInNewWindow = true; |
| rgMemberResult.ExportSettings.Excel.Format = GridExcelExportFormat.ExcelML; |
| this.rgMemberResult.MasterTableView.ExportToExcel(); |
Please let me know, if anything am i missing here.
Thanks