Completed
Last Updated: 22 Aug 2018 06:24 by Dimitar
ADMIN
Dimitar
Created on: 07 Aug 2018 07:37
Category: GridView
Type: Bug Report
0
FIX. RadGridView - the DrawText property cannot be reset from the CellFormatting event.
To reproduce:

 if (e.CellElement.ColumnInfo.HeaderText == "CategoryID")
{
     e.CellElement.DrawText = false;
}
else
{
      e.CellElement.ResetValue(LightVisualElement.DrawTextProperty, ValueResetFlags.Local);
}

Workaround:
 
e.CellElement.DrawText = true;
0 comments