I am using the Janus GridEx (Windows Forms) and would like to export the contents to Excel. We have used the export functionality that Janus has built in before, but especially with hierarchical grids the exported file looks unprofessional.
So now we have written our own exporting code and everything is working fine, except that total rows for child tables or groupings are not exported. The reason for this is that looping through GridEx.GetRows()
and then recursively through parentRow.GetChildRows()
does not pick up any of the total rows shown in the grid.
Does anyone know how to get to these total rows?