I'm having problems with the export settings
as they don't work properly (for instance, when the IgnorePaging
property is set to True, it shows me only the first page)
I have this code:
I could use any help. Thanks.
I have this code:
| private void ConfigureExport() |
| { |
| radGridradGrid.PageSize = radGrid.MasterTableView.VirtualItemCount; |
| radGrid.ExportSettings.ExportOnlyData = false; |
| radGrid.ExportSettings.IgnorePaging = true; |
| radGrid.ExportSettings.OpenInNewWindow = true; |
| radGrid.ExportSettings.FileName = "Report"; |
| //radGrid.Rebind(); |
| } |
| protected void ExportToExcel(object sender, System.EventArgs e) |
| { |
| if (radGrid.Items.Count > 0) |
| { |
| ConfigureExport(); |
| radGrid.MasterTableView.ExportToExcel(); |
| } |
| } |
I could use any help. Thanks.