Tooltips not clearing when item state changed (v2024)

v2024.16

sample on edit form…

appears to happen when you select/change an item.

when the page was loaded and you move your mouse over… the tips show and hide correctly, but when you select an item, the tip remains (e.g. all those items were set to no, then I selected to yes…)

chrome latest version.

JS

You may add some JavaScript to hide the tooltip after some time, e.g. after 5s

$(document).on("shown.bs.tooltip", (e) => setTimeout(() => bootstrap.Tooltip.getInstance(e.target).hide(), null, 5000));
1 Like