Unplanned
Last Updated: 28 Jun 2024 14:25 by ADMIN
Jay
Created on: 23 Apr 2024 15:57
Category: ToolTip
Type: Bug Report
1
Tooltip does not hide automatically

Bug report

The issue is related to the specific selectors used in the filter option. The linked example contains 3 different selectors, with all of which the problematic behavior is exhibited.

Reproduction of the problem

  1. Run this dojo example: https://dojo.telerik.com/aTOHaDUg/5
  2. Hover one of the span elements that matches the Tooltip filter
  3. Move the mouse cursor outside the hovered span.

Current behavior

The Tooltip does not hide automatically, unless you move the mouse cursor directly down from the hovered span.

Expected/desired behavior

The Tooltip hides automatically once you exit the boundaries of the hovered element, regardless of the cursor move direction.

Environment

  • Kendo UI version: 2024.1.319
  • jQuery version: x.y
  • Browser: [all ]
2 comments
ADMIN
Ivan Danchev
Posted on: 28 Jun 2024 14:25

Hi Jay,

The bug has not been planned for a specific release yet, but I can suggest a workaround, which can be used until an official fix becomes available: https://dojo.telerik.com/aTOHaDUg/7

The workaround involves hiding the Tooltip programmatically in the mouseleave event handler attached to all the elements that it is shown for:

$("#titleHoverTest span").mouseleave(function() {
   $("#titleHoverTest").data("kendoTooltip").hide();
})

Regards,
Ivan Danchev
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages. If you're new to the Telerik family, be sure to check out our getting started resources, as well as the only REPL playground for creating, saving, running, and sharing server-side code.

Jay
Posted on: 27 Jun 2024 16:10
HI, I am checking on is there any plan to push this fixes in the upcoming releases. Also to check, if any work around available ?