Unplanned
Last Updated: 18 Mar 2020 06:30 by ADMIN

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

Unplanned
Last Updated: 03 Jun 2019 14:08 by ADMIN
Created by: Cristal
Comments: 1
Category: ToolTip
Type: Feature Request
3

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