Hello Telerik,
I want to display a ToolTip when mouse passing on specific cell (pink background cell), but I don't find the corresponding event.
I tried to use the CurrentCell but it's every time null. After, I tried to use the casted row to use its Properties Item CurrentCell to get attribut ('IsDiscontinuite') but the result it's every time true.
My work :
//Every Time null
if
(((RadGridView)sender).CurrentCell.Background ==
new
SolidColorBrush(Color.FromArgb(255, 255, 0, 255)))
//Every Time "True"
if
(((MesureDynamicRow)((RadGridView)sender).CurrentCellInfo.Item).Properties.First().CoupureHisto)
So, I want to know what is the find event for this problem ?
Thank you very much !
Valentin.