Telerik Forums
Kendo UI for jQuery Forum
1 answer
403 views

I need multi tooltips always show in the page, and the tooltips will hide only when users click close icon of the tooltips.

but tooltips will hide when click other elements in the page, how to prevent this ?

Following is my code and screenshot.


<div class="point" title="A">1</div>
<div class="point" title="B">2</div>
<div class="point" title="C">3</div>

$('.point').kendoTooltip({ position: "top", width: 200, autoHide: false, showOn: "click", hide:(e)=>{ console.log(e) e.preventDefault() } })

const $allEl = $(`.point`)

 for(let i=0;i<$allEl.length;i++){
        const $this = $allEl.eq(i)
        $this.data('kendoTooltip').show($this)
      }
     



Veselin Tsvetanov
Telerik team
 answered on 22 Oct 2021
1 answer
953 views

I have an element need to inited both Draggable and Toolips, and I want to prevent tooltips show event when dragend, I use e.preventdefault() , but it don't work.

The version I'm using is 2017.3.913

For some reason, I can't update to the latest.

My  html

<div class="edit-tooltips" style="left: ${xPx};top: ${yPx}">
        <div class="sensor-point new-point" > content
          ${ index }
        </div>
</div>

My js

$(".edit-tooltips").kendoTooltip({
   autoHide:false,
   showOn: "click"
  .....
})


$(".sensor-point").kendoDraggable({
        hint: (element)=>{
             return ....
        },
        dragstart: (e:any)=>{

        },
        dragend: (e:any)=> {
           ....
          e.preventDefault()  // this dot'n work, tooltips show event will still be triggered
        }
      })

Veselin Tsvetanov
Telerik team
 answered on 15 Oct 2021
1 answer
1.0K+ views

I have a grid where I have some buttons with icons for every row. For those buttons I need to display some tooltips. To do this I am using the kendo tooltip however when the user hovers the button and after the tooltip is displayed the user clicks on the button, the button is hidden but the tooltip is still shown.

How can I close the tooltip when the element is no longer visible on the screen?

Neli
Telerik team
 answered on 08 Sep 2021
1 answer
166 views

In the documentation I found how to change the main tooltip for a task start/end. Actually I want to keep it.

But how could I change only the planned tooltip? 

Neli
Telerik team
 answered on 21 Jun 2021
0 answers
237 views

Hello, I have a problem with tooltips and hope you can help me.

Under certain circumstances multiple tooltips are shown and won't close (see screenshot and screenrecord).

To reproduce this move the cursor quickly over elements that have a tooltip.

Is there a way to fix this?

Hans-Jürgen
Top achievements
Rank 1
Veteran
 asked on 31 May 2021
1 answer
199 views

Hi,

The position of tooltip in bar charts is at top bar-line by default. Can this position be changed to the middle of the bar chart . While going through the documentation we didn't find any property to set the position. Please suggest.

Regards,

Jaspreet

Georgi Denchev
Telerik team
 answered on 26 May 2021
1 answer
744 views

There is a code snippet in the _removeDescribedBy method

 

arrayAttr = target.attr (DESCRIBEDBY) .split ('')

In a specific, unknown situation, undefined is returned from the attr method, which generates an error with the following content:
Uncaught TypeError: Cannot read property 'split' of undefined

The solution is simple:
arrayAttr = (target.attr (DESCRIBEDBY) || '') .split ('')


Is it possible for the next version of kendo.ui to appear in all places where such a fragment of the code is protected against unedfined?
Aleksandar
Telerik team
 answered on 21 Apr 2021
1 answer
345 views

Hello,

 

please check this example: https://dojo.telerik.com/EVEToriY

When tooltip is used with DatePicker, it shows over picker icon. Is there any way how to display it next to icon and not next to input?

I know I can use offset property to move it, but it is little hack for me.

Regards

René

Aleksandar
Telerik team
 answered on 20 Apr 2021
1 answer
279 views

Good afternoon,

We have an issue where the tooltip widget would hide when it shouldn't.

Please see:

https://dojo.telerik.com/oCuMidOL/5

If you hover over your mouse and then scroll the window, then the tooltip will hide (even though we have set autoHide: false).

How can we make this stay always visible? It should hide only if the "x" button is clicked.

 

many thanks

Alex

Aleksandar
Telerik team
 answered on 18 Jan 2021
6 answers
90 views

Hi team !

Recently, animations on my tooltips (and some other components like windows) stopped working, and I can't manage to find why or how to fix it. This issue appeared on every pages. 

 

$(document).ready(function () {
        $("#gridHistoPeriodesRecueil").kendoTooltip({
            filter: ".k-grid-cmdModifier",
            content: "Modifier les dates de la période",
            animation: {
                open: {
                    effects: "fade:in",
                    duration: 1000
                }
            }
        });
 })

 

"gridHistoPeriodesRecueil" is my grid, "cmdModifier" my command. When I hover over the button, the tooltip appears, but without animation. I tried with other effects, with or without duration, on other pages, but it doesn't work anymore. 

 

I think I did something wrong that disabled every animations on my project, but I don't know what. Any idea ?

 

Thank you,

 

Valentin

Petar
Telerik team
 answered on 12 Jan 2021
Narrow your results
Selected tags
Tags
+? more
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?