RadzenMenuItem not showing tooltip

Tooltip showing on button but not on RadzenMenuItem.

Code below not working:

  <RadzenMenuItem Text="Home"  Path="/" MouseEnter="@(args =>  tooltipService.Open(args, "This is Tooltip"))" Icon="home" />

While code below is working

 <RadzenButton   Icon="send" MouseEnter="@(args =>  tooltipService.Open(args, "This is Tooltip"))"  Text="Send Test Email" Click="@MessageTestEmail" />
                    

I have also tried the code given in the samples docs on your website but same result.
How to make tool tip work on RadzenMenuItem.

1 Like

Hi,
I have the same problem. RadzenMenuItem does not show a tooltip using the MouseEnter attribute.
It works for all other components without any problems.
The problem exists even with the last version 4.5.0.

Not sure what's the purpose of showing such complex tooltip over a menu item - you can use plain browser tooltip by adding title attribute:


1 Like

Thank you very much for your swift reply. The title attribute works for me.

Just some background information why we use a tooltip text: Our RadzenMenuItem shows a printer icon which is right aligned to the page. The submenu items are icons for preview and print. We decided to use a tooltip instead of a menu text because we were not able to right align the pulldown menu. Only showing icons does not change the page width.

Again, thank you very much for your help!

1 Like

Thank you for reply.