Completed
Last Updated: 20 Feb 2014 15:13 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 21 Oct 2013 03:25
Category: GridView
Type: Bug Report
1
FIX. GridHeaderCellElement's arrow is cut off in Windows7 theme
To reproduce: 
-add RadGridView and apply Windows7 theme
-click on some GridHeaderCellElement. As a result the arrow is cut off.

Workaround:

this.radGridView1.ViewCellFormatting+=radGridView1_ViewCellFormatting;

private void radGridView1_ViewCellFormatting(object sender,
    Telerik.WinControls.UI.CellFormattingEventArgs e)
{
    GridHeaderCellElement cell = e.CellElement as GridHeaderCellElement;
    if (cell != null)
    {
        cell.Arrow.Margin = new Padding(0, 3, 0, 0);
    }
}
0 comments