Hello,
Our team is using the RadGrid component in one of our applications. It has been working great so far. Recently, a bug cropped up:
When clicking our "Export to Excel" button, nothing seems to happen any more. Here is the code for our "export" button:
I've stepped through the code and it is successfully executing each step without any errors showing, but the download dialog is not showing up.
One other thing worth noting: The checkboxes in the grid are disappearing after the button is clicked. Any help would be appreciated.
Jason
Our team is using the RadGrid component in one of our applications. It has been working great so far. Recently, a bug cropped up:
When clicking our "Export to Excel" button, nothing seems to happen any more. Here is the code for our "export" button:
this.radGridLicenseTerms.ExportSettings.ExportOnlyData = true;
this.radGridLicenseTerms.ExportSettings.IgnorePaging = true;
this.radGridLicenseTerms.ExportSettings.OpenInNewWindow = true;
this.radGridLicenseTerms.ExportSettings.FileName = COMPANYCONTRACTS_EXPORTFILENAME;
this.radGridLicenseTerms.MasterTableView.ExportToExcel();
I've stepped through the code and it is successfully executing each step without any errors showing, but the download dialog is not showing up.
One other thing worth noting: The checkboxes in the grid are disappearing after the button is clicked. Any help would be appreciated.
Jason