Hi,
I have a RadGrid consisting of a column with hyperlinks. I would like to ExportToExcel using the following ExcelML option to maintain the formatting:
| radGridN.ExportSettings.Excel.Format = GridExcelExportFormat.ExcelML; |
However to use the GridExcelExportFormat.ExcelML, I am forced to set ExportOnlyData to true:
| radGridN.ExportSettings.ExportOnlyData = true; |
But then I lose the hyperlink in Excel and see only the Data (as expected). Is there a way that I can still use ExcelML option to keep the nice formatting and but also get my Hyperlinks to work in Excel?
Greg