Completed
Last Updated: 16 Oct 2017 10:44 by ADMIN
ADMIN
Petar Mladenov
Created on: 06 Oct 2017 14:35
Category: GridView
Type: Feature Request
0
GridView: Add option in GridViewDocumentExportOptions to include / exclude GroupHeaderRowAggregates
Add option in GridViewDocumentExportOptions to include / exclude GroupHeaderRowAggregates.

This will allow users to hide/show group header row aggregates in the exported documents.

Option will be globbally applied - to all group header rows in the RadGridView.
===
From 2017 R3 SP GridViewDocumentExportOptions  adds ShowGroupHeaderRowAggregates bool property.

It can be used like so:

  GridViewDocumentExportOptions options = new GridViewDocumentExportOptions()
            {
                ShowGroupHeaderRowAggregates = true
            };
this.gridView.ExportToWorkbook(options);
0 comments