Tooltip Flickering

1 Answer 530 Views
Scheduler Tooltip
Sam
Top achievements
Rank 1
Sam asked on 14 Aug 2023, 12:19 PM

I'm using the Blazor Tooltip inside Scheduler ItemTemplates.  The content of my Tooltips is defined inside a Template.

Intermittently, the tooltip is flickering very fast as the mouse hovers between Scheduler events. I've not observed any patterns to the flickering behavior, as it sometimes ceases entirely.

In the past, when using Javascript to render rich content in tooltips, I've added a delay, but that doesn't appear to be an option with this control.

Any recommendations or workarounds to address this behavior?

Víctor
Top achievements
Rank 1
Iron
Iron
Iron
commented on 14 Aug 2023, 02:43 PM

Not only in scheduler, but in many places the tooltip flikers...
Sam
Top achievements
Rank 1
commented on 14 Aug 2023, 06:44 PM

You're correct.   I just saw it happen with my Tooltip that is tied to a grid command button.

1 Answer, 1 is accepted

Sort by
0
Hristian Stefanov
Telerik team
answered on 15 Aug 2023, 06:57 AM

Hi all,

I'm pasting here the answer I gave in Sam's private ticket so the community can benefit from it.

=======

It seems that the described flickering behavior appears due to a missing functionality - currently, the tooltip does not remain visible if it shows somewhere where the mouse cursor is.

In the meantime, you can use the following CSS to avoid the flickering:

<style>
    .no-flicker {
        pointer-events: none;
    }
</style>

<TelerikTooltip TargetSelector=".tooltip-target"
                Class="no-flicker">
</TelerikTooltip>

I look forward to hearing whether the above approach works well for you and aligns with your needs.

=======

Regards,
Hristian Stefanov
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources!
Tags
Scheduler Tooltip
Asked by
Sam
Top achievements
Rank 1
Answers by
Hristian Stefanov
Telerik team
Share this question
or