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.
The Tooltip does not hide automatically, unless you move the mouse cursor directly down from the hovered span.
The Tooltip hides automatically once you exit the boundaries of the hovered element, regardless of the cursor move direction.
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
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
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.