Hi is there a fault in the tooltips for the gridview/treelistview ?
Whenever I change the value of the cell the tooltip for the cell becomes null, the fault is also in your example
home->controls->data->gridview->datatemplateselectors->cell tooltips.
This is my code
I'm using the newest version of the telerik dll's.
Is there any fix or workaround ?
Best regards
Kristján.
Whenever I change the value of the cell the tooltip for the cell becomes null, the fault is also in your example
home->controls->data->gridview->datatemplateselectors->cell tooltips.
This is my code
private
void
grid_CellLoaded(
object
sender, CellEventArgs e)
{
ToolTip tip =
new
ToolTip();
tip.Content =
"hello world"
;
//e.Cell.ToolTip = tip; -> I've tryed this and the line below.
ToolTipService.SetToolTip(e.Cell, tip);
}
I'm using the newest version of the telerik dll's.
Is there any fix or workaround ?
Best regards
Kristján.