Completed
Last Updated: 01 Aug 2018 11:57 by Dimitar
ADMIN
Dimitar
Created on: 31 Jul 2018 05:20
Category: GridView
Type: Bug Report
0
FIX. RadGridView - exception when the grid has a column wider that 2000 and the grid is exported
Use attached to reproduce.

Workaround:
class MySpreadExportRenderer : SpreadExportRenderer
{
    public override void SetWorksheetColumnWidth(int columnIndex, double value, bool isCustom)
    {
        if (value > 2000)
        {
            value = 2000;
        }
        base.SetWorksheetColumnWidth(columnIndex, value, isCustom);
    }
}
0 comments