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)
}