Hi there
I'm trying to show a tooltip on a RadPanel. Normally I'm using the ToolTipTextNeeded event for every Telerik control I used before. But this seem not to work here. I also tried the ToolTipText property on RadPanel.PanelElement. I also set AutoToolTip to true, without any success. What I tried:
1.
private
void
panFiles_ToolTipTextNeeded(
object
sender, ToolTipTextNeededEventArgs e)
2.
{
3.
e.ToolTip.ToolTipTitle =
"test1"
;
4.
}
1.
panFile1.ShowItemToolTips =
true
;
2.
panFile1.PanelElement.AutoToolTip =
true
;
3.
panFile1.PanelElement.ToolTipText =
"test2"
;
1.
panFile1.PanelElement.PanelFill.AutoToolTip =
true
;
2.
panFile1.PanelElement.PanelFill.ToolTipText =
"test"
;
However, the tooltip is still not showing up. I cannot find any information about it in the RadPanel documentation. Is this even possible for this control?
Best Regards,
Roman