Hello,
as you can see in the object I can get only the first row, the headers row.
I tried everything: export to Excel, export to CSV, export to HTML, export to PDF. Each time I get a file in the desidered format (without problem) but with only one line, the headers line.
This is my scenario:
I have a Win Form wich contains a RadGridView control that I populate via code (something like your demos).
In the form there is a button that open a dialog form (I need to give some option to the customers before create the exported file).
In the dialog form there is all the routines to generate the desired file. For example:
Here's what I'm using:
.NET 4
Visual Studio 2010
Telerik Win Controls 2012.3.1211.40
Please help me, I'm getting crazy!.
Best Regards.
Davide
as you can see in the object I can get only the first row, the headers row.
I tried everything: export to Excel, export to CSV, export to HTML, export to PDF. Each time I get a file in the desidered format (without problem) but with only one line, the headers line.
This is my scenario:
I have a Win Form wich contains a RadGridView control that I populate via code (something like your demos).
In the form there is a button that open a dialog form (I need to give some option to the customers before create the exported file).
In the dialog form there is all the routines to generate the desired file. For example:
Private Sub RunExportToCSV(ByVal fileName As String)
Dim MyCsvExporter As New ExportToCSV(m_CurrentGrid)
MyCsvExporter.SummariesExportOption = SummariesOption.ExportAll
MyCsvExporter.HiddenColumnOption = HiddenOption.DoNotExport
Try
MyCsvExporter.RunExport(fileName)
Catch ex As IOException
MessageBox.Show(Me, ex.Message, "I/O Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End Try
End Sub
Here's what I'm using:
.NET 4
Visual Studio 2010
Telerik Win Controls 2012.3.1211.40
Please help me, I'm getting crazy!.
Best Regards.
Davide