When moving through objects with Kendo UI Tooltips fast, the tooltip does not hide.
Tooltips should disappear when navigating through new tooltips.
Dojo: https://dojo.telerik.com/@jay/AhUYayEx
1. Hover over a color - tooltip shows up;
2. Hover over the tooltip;
3. Move the cursor back to the same target;
4. Move the cursor to a different color or any mouseout;
Actual: Tooltip is not closed
Expected: Tooltip to be closed (same as when not performing step 2)
Dojo example. Screencast.
The Tooltip does not hide.
The Tooltip hides.
the Tooltip flashes instead of being displayed constantly.
The Tooltip flashes although the mouse does not move
The Tooltip should not blink until the target is hovered
I have noticed that, after switching themes, the tooltips in our application do no longer work correctly. I was able to reproduce the issue in the following two DOJOs:
The only difference between those two is the stylesheet to be loaded (line 6).
Steps to reproduce:
In step 4, the correct behavior would be displaying the tooltip in the same fashion as in step 2. However, in the faulty DOJO, it can be seen that the tooltip does not expand past the width of the text that is displayed when hovering over the green dot. This means that when displaying long tooltips after short ones, they are always wrapped unnecessarily.
A way to fix this behavior (and what's actually the difference between the two stylesheets) is to set the position on the ".k-animation-container" back to its default value "static". Usually, this value is overridden by the output of the size calculations, but during the calculations this value comes to play.
This third DOJO demonstrates the fix described above.
Please note that when using the default-ocean-blue stylesheet, the positioning of the callout seems to be broken as well.
Initializing tooltips on a container and filter is great, but we need a way to individualize some configuration options, especially positions. Option 1: position = "auto" if the target is close to the top, position is automatically set to bottom if the target is close to the bottom, position is automatically set to top if the target is close to the left, position is automatically set to right if the target is close to the right, position is automatically set to left Option2: position = function(tooltip, target) {} This might be applicable to other properties.
Tooltip content is misaligned when no width for the tooltip is specified, and when loading the content via Ajax. The Tooltip appears to the right instead of being centered.
When the width of the Tooltip is not set the content is aligned to the right of the arrow.
The Tooltip content should be aligned the same no matter if it has a width set - it should be centered.
Bug report
Every second display of the Tooltip's text is always wrapping
Regression introduced with 2023.1.314
Reproduction of the problem
Dojo: https://dojo.telerik.com/IFuWexuj/3
Hover the Some content
Hover the Some content string for the second time
Expected/desired behavior
The Tooltip shall not wrap into multiple lines
Environment
Kendo UI version: 2023.1.314 or newer
Browser: [all]
A Tooltip that fetches its content using AJAX request doesn't render a loading icon while waiting for the response.
Issue 1. No loading icon is rendered.
Issue 2. The Tooltip doesn't render until the response from the server arrives.
The Tooltip should render immediately with a loading icon until the response from the server arrives.
Hi Team,
I'd like to request the ability to be able to customize the Kendo UI ToolTip's callout. For example, being able to set a border around it would be helpful.
Thank you!
We have the needs to display a toolbar vertically. We tried your toolbar control but the feature was not there. However, we looked at the code and did minor changes to allow it. Is there any way we can submit the code so you would look at it and maybe add it to the main stream of Kendo UI javascript toolbar?
Please allow us to set tooltip offsets, so I whatever value you calculate it to be shown at I can "push" it off further. Also please append a class showing of the location of the tooltip (top, bottom, left, right) to help us style appropriatly.
Tooltip does not hide as expected when another Tooltip is opened in Map. Setting marker: { tooltip: { autoHide: false, } }
A sample WebSite is attached.
Initially the Tooltip shows up positioned in such way that most of its content not visible. If you close the Tooltip and click the "Click me" text to show it again, it is shown over the whole page.
The positioning on first opening is incorrect. The Tooltip should be positioned identically in both cases (when opened for the first time, and on subsequent opening).
I would like to update a single tooltip based on a user's input. I can currently do this but when the tooltip initially shows it has stale data in it. A property that would hold off on showing the tooltip until new data is added by a function would be nice and help prevent the user from ever seeing the stale data.
Dojo example
The Tooltip is not centered and appears to the left of the element it is shown for.
The tooltip is centered.
When a user mouseover's a specific element that produces the Kendo UI Tooltip initially with a position of bottom, the tooltip is below the browser window. Upon the mouseover a second time, the tooltip shows changes position to top.
This will initially appear below the window. Upon mouseover a second time, will be above. Here is a screencast of the behavior.
The Kendo UI Tooltip should appear above to initially instead of being displayed outside the user's view.
The contentTemplate will be usable in MVVM bindings that points to an css id tag element in order to pull the Tooltip's contents.
Please add an option to configure the base postion of the tooltip. Default value is "target" for the target element. If "mouse" is set it is the current mouse position.
I would like to have more powerful tooltips - Prevent the opening of a tooltip via the show event and preventDefault (or similar) - Prevent the closing of a tooltip via the close event and preventDefault (or similar) - Have tooltips which can have their autoHide option determined by whatever they are hovering over, hence half the page could use 'hover' tooltips but more complex tooltips on the same page could use a close button. Could possibly accomplish this via the previous point In general on this last point, you typically have a single tooltip widget on the page attached to the body, you may want more than one style - Within the show event have access to the element on the page that the tooltip is above, (if there is already access I couldn't see it)