Completed
Last Updated: 13 Oct 2015 10:54 by Todor
Todor
Created on: 19 Feb 2015 14:00
Category: GridView
Type: Bug Report
0
FIX. RadGridView - when the ErrorText of a cell in CheckBoxColumn is set, the ToolTip is displayed only if mouse is over cell's border.
Workaround:

Subscribe  to CellFormatting event:

void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
    if (e.CellElement is GridCheckBoxCellElement)
    {
        e.CellElement.ToolTipText = "ErrorMessage for CheckBoxColumn";
        e.CellElement.Children[0].ToolTipText = "ErrorMessage for CheckBoxColumn";
        e.CellElement.Children[0].Children[0].ToolTipText = "ErrorMessage for CheckBoxColumn";
    }
}
0 comments