Hello. Our application is using Telerik WinControls from Q1 2022.
We have a number of context menus where we wish to conditionally disable menu items and show a tooltip that explains why the menu item is disabled. The problem is that when the menu item is disabled then no tooltip is displayed!
How do we get tooltips to display even when the menu item is disabled?
In the following example we would not see the tooltip when menuItem.Enabled = false; Can we get a fix for this? Our work-around is causing other problems.
RadContextMenu contextMenu = new RadContextMenu();
RadMenuItem menuItem = new RadMenuItem("View in Browser");
contextMenu.Items.Add(menuItem);
if (supportsBrowser())
{
menuItem.Tooltip = "Open your browser";
}
else
{
menuItem.Enabled = false;
menuItem.Tooltip = "This device does not support browser access.";
}