Hi,
I am using version 2013.3.1114.35 of your ASP.NET for AJAX controls.
In the past, you have implemented the following awesome workaround, to allow a custom header to be exported, when exporting from a grid.
protected void RadGrid1_GridExporting(object source, GridExportingArgs e)
{
string customHeader = "<table><tr><td>CUSTOM HEADER</td></tr></table>";
e.ExportOutput = e.ExportOutput.Replace("<table cellspacing", customHeader + "<table cellspacing");
}
I implemented that years ago and it had been working for a long time. However, it no longer works. The code runs without error, but the Custom Header is NOT exported. Only the report data is exported...
For us I don't know exactly when it broke, but I would suspect it was when we upgraded to 2013.3.1114.35.
Q. Can you confirm this?
Q. Can you suggest a "fix"? Perhaps I just need a different customHeader string???
Any help is appreciated.
Regards,
Michael
I am using version 2013.3.1114.35 of your ASP.NET for AJAX controls.
In the past, you have implemented the following awesome workaround, to allow a custom header to be exported, when exporting from a grid.
protected void RadGrid1_GridExporting(object source, GridExportingArgs e)
{
string customHeader = "<table><tr><td>CUSTOM HEADER</td></tr></table>";
e.ExportOutput = e.ExportOutput.Replace("<table cellspacing", customHeader + "<table cellspacing");
}
I implemented that years ago and it had been working for a long time. However, it no longer works. The code runs without error, but the Custom Header is NOT exported. Only the report data is exported...
For us I don't know exactly when it broke, but I would suspect it was when we upgraded to 2013.3.1114.35.
Q. Can you confirm this?
Q. Can you suggest a "fix"? Perhaps I just need a different customHeader string???
Any help is appreciated.
Regards,
Michael