Hi,
I'm using IG 9.2's support for export to Excel. I would like to exclude a couple of columns from being exported to Excel. Can you let me know how that could be done?
Thanks,
Joe
Hello Joe,
The easiest way I found is to register for the EndExport event and simply manipulate the Excel Workbook form there. E.g:
e.Workbook.Worksheets[0].Columns[0].Hidden =
true;
Hope this helps.
Sincerely,
Petar Monov,
DS Engineer,
Infragistics Bulgaria
Thanks Petar but this may not work for me as the column still exists in the Excel. My users need the excel to feed into another system or save as csv where this column would still show.
When handling the InitializeRecord event the InitializeRecordEventArgs has a SkipRecord property. Isnt there something similar for columns ?
Hi Joe,
In that case you can register for the HeaderLabelExporting and CellExporting events and use something like this to prevent the exporting:
if (e.CurrentColumnIndex == 1)
{
e.Cancel = true;
}
Regards Petar.
Thanks Petar. This way the label and the column data doesn't get exported but I still have the problem that there is an empty column in the exported Excel. Saving the file to csv for eg will add a redundant comma to the csv for the empty column.
For now I've worked around by:
* removing the concrened columns fromthe layout (setting field.Visibility = Visibility.Collapsed)
* Exporting
* setting visibility back to Visible
Would it be possible for you to raise this as a request for a future release? Similar to how you have SkipRecord
We are using 2009.2. and would like to know if customizing Excel Export to "exclude" columns is available in this or any future version. Meaning, out of 5 columns displayed in the grid we would like to export only 3 columns.
Or is it possible to put in a feature request to facilitate the same.
Thanks in advance.
Muthu
Any comments? Thanks.