Hello,
How can I refresh grid after export to excel?
I have a normal export button and ajaxified grid.
How can I refresh grid after export to excel?
I have a normal export button and ajaxified grid.
| grid.CurrentPageIndex = 0; |
| grid.ExportSettings.ExportOnlyData = true; |
| grid.ExportSettings.IgnorePaging = true; |
| grid.ExportSettings.OpenInNewWindow = true; |
| grid.ExportSettings.FileName = "Export"; |
| grid.ExportSettings.Excel.Format = Telerik.Web.UI.GridExcelExportFormat.ExcelML; |
| grid.MasterTableView.ExportToExcel(); |