Completed
Last Updated: 15 Aug 2017 10:54 by ADMIN
ADMIN
Dimitar
Created on: 15 May 2017 07:03
Category: GridView
Type: Bug Report
1
FIX. RadGridView - decimal values are not exported when using GroupViewDefinition and currency format.
Attached project for reproducing.

Workaround:
var column = radGridView1.Columns[2] as GridViewDecimalColumn;
var format = column.FormatString;
column.FormatString = "";
column.ExcelExportType = DisplayFormatType.Currency;

//export the grid

column.FormatString = format;
0 comments