I have a gridview that displays fine in the app.
Cells with multiple values show up as:
Value 1
Value 2
Value 3
Within the cell.
But on exporting the grid the cells value is all on one row within the cell.
How to get the exported excel sheet to look like what is displayed on the apps grid.
This is what I am currently setting in code:
objGrid.BestFitColumns();
spreadExporter = new Telerik.WinControls.Export.GridViewSpreadExport(objGrid)
{
ExportVisualSettings = true,
SheetName = strSheetName,
FileExportMode = Telerik.WinControls.Export.FileExportMode.NewSheetInExistingFile
};
exportRenderer = new Telerik.WinControls.Export.SpreadExportRenderer();