Hi
in the file kendo\2019.1.220\kendo.tooltip.min.js, the title is hardcode.
{# <div class="k-tooltip-button"><a href="\\#" class="k-icon k-i-close" title="Close"></a></div> #}
So everytime we use a tooltips that need the x to be closed, we can see a tooltip showing.
We found three way to remove it,
the first one, on the show event of a tooltips, we target the element and removed the title attribute, but that mean that we have to do this for all the tooltips we already use.
The second one, bind an event on click on the document and target the tooltips to remove it. Meaning that we have to listen to all the click on the page.
The third one would be to edit the js file, and not forget to do it every time we update Kendo.
All the above would work, but It means that we have to take an extra step every time. Could It be removed from the original code or at least work with the culture that we use(kendo.culture.fr-CA.min in our case) ?
It cause problems because the web app that we are developing is in french.
Thank
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 Team,
We are using kendo mvc tooltip on our user form. we show tooltip on right when user focus in input. we want to force the right position always on tablet and medium devices. but right now, if there is less space on right, the tooltip auto moves to left. how can we stop this to going from right to left regardless of space.
Thanks,
Sam