Hello, I encounter a strange problem: I've defined several tooltips in my page, located in different containers.
The tooltips have an addtitional class "tt" and are initialized as following:
$(".tt").tooltip({
trackMouse: true, content: 'test',zIndex: 99999
});
When using Firefox or Internet Explorer, the tooltips work as expected. But in Chrome and Edge, the tooltips are not displayed. When inspecting, .tooltip("tip").css("left") and .tooltip("tip").css("top") each show '-100000px'
As mentioned, using the same code, in Firefox or Internet Explorer, the coordinates are correct and the tooltips are shown properly
What can be the reason ?
TX and kind regards
EasyUI