Unplanned
Last Updated: 30 Mar 2016 07:53 by Svetlin
Svetlin
Created on: 29 Aug 2012 03:10
Category: GridView
Type: Bug Report
1
FIX. RadGridView - the background of pinned cell overlaps the row's background set by the conditional formatting algorithm.
Workaround:
Private Sub radGridView1_CellFormatting(sender As Object, e As Telerik.WinControls.UI.CellFormattingEventArgs)
    If e.CellElement.IsPinned Then
        If e.CellElement.RowElement.DrawFill Then
            e.CellElement.DrawFill = False
        Else
            e.CellElement.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local)
        End If
    End If
End Sub
0 comments