Completed
Last Updated: 10 Jul 2014 14:09 by ADMIN
ADMIN
Dimitar
Created on: 17 Mar 2014 09:41
Category: RibbonBar
Type: Bug Report
0
FIX. RadRibbonBar - ScreenTipNeeded event is not fired when the tab is expanded by clicking its name.
To reproduce:
- Add ribbon bar with a few buttons subscribe to ScreenTipNeeded event and show different text for each button.
- Collapse the tabs by clicking the collapse button, the expand a tab by clicking its name.
- You will notice that the ScreenTipNeeded event is not fired.

Workaround:
Create separate screen tip for each element:
RadOffice2007ScreenTipElement button2Tip = new RadOffice2007ScreenTipElement();
button2Tip.CaptionLabel.Text = "button 2";
button2Tip.MainTextLabel.Text = "button 2";

radButtonElement2.ScreenTip = button2Tip;
0 comments