Completed
Last Updated: 08 Aug 2024 08:55 by ADMIN
Release 2024 Q3 (Aug)
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 ]
4 comments
ADMIN
Ivan Danchev
Posted on: 08 Aug 2024 08:55

Hi Jay,

The issue has been fixed and the fix is included in the latest version: 2024.3.806

Regards,
Ivan Danchev
Progress Telerik

Do you have a stake in the designеr-developer collaboration process? If so, take our survey to share your perspective and become part of this global research. You’ll be among the first to know once the results are out.
-> Start The State of Designer-Developer Collaboration Survey 2024

Jay
Posted on: 05 Aug 2024 15:52

Hi Kendo Team,

I have seen this request in completed status so checking is this fix already in any of the kendo available version or upcoming ?

 

Thanks-

Jay Joshi

 
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 ?