I have a similar issue to this question [https://www.telerik.com/forums/tooltip-position-incorrect-when-scrolled-down-page], however we are using jQuery 3.7.1.
What I found was that we were using the .Animation property to enhance the UI. If I remove the .Animation property, it renders correctly when scrolling.
We are also using this with .ToClientTemplate() on the ToolTip as well.
Is this a known issue?
@(Html.Kendo().Tooltip()
.For("#image-info")
.Position(TooltipPosition.Left)
.Content("Here is my tooltip text")
.Width(250)
//.Animation(a =>
//{
// a.Open(o =>
// {
// o.Expand();
// });
//})
.ToClientTemplate())
Hello Michael,
I've attached a sample project with a Tooltip in the Index view showing on hovering a span in a scrollable page. jQuery 3.7.1 is referenced in the Layout.
Could you modify the sample project accordingly, so that it demonstrates the problematic behavior and attach it back for further review?
Hi Ivan, I don't see an attachment.
Michael,
Not sure what went wrong with the attachment. I'll try again in this post
Thank you for the sample application. I see that it is working correctly, time for me to go back to my project and see what I can find that different.
Thank you