Completed
Last Updated: 06 Feb 2018 07:05 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 31 Jan 2018 14:06
Category: GridView
Type: Bug Report
2
FIX. RadGridView - all pinned column types should have identical fill style in Windows8 theme
To reproduce: if you pin a calculator or a hyperlink column you will notice that the cells belonging to these columns remain white. However, the cells from other column types  have a light blue/gray fill color for pinned state. 

Workaround: 
private void RadGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
    if (e.Column.IsPinned)
    {
        e.CellElement.BackColor = Color.FromArgb(235, 244, 252);
    }
    else
    {
        e.CellElement.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local);
    }
}
Attached Files:
0 comments