Unplanned
Last Updated: 02 Mar 2018 14:19 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 02 Mar 2018 10:59
Category: GridView
Type: Bug Report
1
FIX. RadGridView - incorrect layout of the GridViewSpreadStreamExport with grouped grid and ColumnGroupsViewDefinition
To reproduce: run the attached sample project and press the "stream export" button. 

Workaround: use the GridViewSpreadExport https://docs.telerik.com/devtools/winforms/gridview/exporting-data/spread-export

        Dim spreadExporter As GridViewSpreadExport = New GridViewSpreadExport(RadGridView1)
        Dim exportRenderer As New SpreadExportRenderer()
        Dim fileName As String = "..\..\Export" & DateTime.Now.ToLongTimeString().Replace(":", "_") + ".xlsx"
        spreadExporter.RunExport(fileName, exportRenderer)
0 comments