Completed
Last Updated: 07 Mar 2016 11:54 by ADMIN
ADMIN
Ralitsa
Created on: 02 Mar 2016 09:14
Category: PivotGrid
Type: Bug Report
0
FIX. RadPivotGrid - rows are missing if the form is minimized right after the pivot is exported to excel file
To reproduce: 
1. Add RadPivotGrid on the form and populate it with data 
2. Add 2 buttons to export to xls and xlsx formats 
3. Run the form and export to xls format 
4. Minimize the form. You will see that one of row is disappeared
5. Repeat the same action and you will see that a second row is disappeared. 

The issue if observed with both exporter providers (PivotGridSpreadExport/PivotExportToExcelML) and export with visual settings. 

Workaround: 
In the handler of the SizeChanged event clear the cached elements: 
void Form1_SizeChanged(object sender, EventArgs e)
{
    this.radPivotGrid1.PivotGridElement.PivotRowsContainer.ElementProvider.ClearCache(); 
}
0 comments