Posted 30 Mar 2013 Link to this post
Posted 03 Apr 2013 Link to this post
void
radGridView1_ViewCellFormatting(
object
sender, CellFormattingEventArgs e)
{
GridGroupContentCellElement cell = e.CellElement
as
GridGroupContentCellElement;
if
(cell !=
null
)
GridViewGroupRowInfo row = (GridViewGroupRowInfo)cell.RowInfo;
(row.Group.Groups.Count == 0)
cell.BackColor = Color.Red;
cell.DrawFill =
true
;
return
}
cell.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local);
cell.ResetValue(LightVisualElement.DrawFillProperty, ValueResetFlags.Local);