单击按钮时 Flex 工具提示消失

发布于 2024-11-26 11:40:30 字数 233 浏览 2 评论 0原文

我在 Flex 中有工具提示,但是当单击组件时,工具提示消失,用户必须将鼠标移出控件,然后返回控件才能显示工具提示。

有没有办法防止工具提示在鼠标单击时被破坏。

我尝试打电话 e.stopImmediatePropagation(); e.preventDefault();按钮的鼠标单击事件。还尝试处理和防止 tooltipEnd 和 tooltipHide 事件,但单击按钮时它们不会触发。

谢谢。

I have tooltips in flex but when a component is clicked the tooltip disappears and the user has to move mouse out of the control and then back into the control to display the tooltip.

Is there a way to prevent the tooltip from getting destroyed on mouse click.

I tried calling
e.stopImmediatePropagation();
e.preventDefault(); on mouse click event of button. also tried handling and preventing tooltipEnd and tooltipHide events but they are not fire when the button is clicked.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彼岸花ソ最美的依靠 2024-12-03 11:40:30

我通过向 mouseDown 事件添加事件处理程序,然后调用 PreventDefault 和 stopImmediatePropagation 解决了该问题,这可以防止工具提示消失并且按钮仍然可单击。

I have fixed the issue by adding a event handler to the mouseDown event and then calling preventDefault and stopImmediatePropagation there this prevents the tooltip from vanishing and the button is still clickable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文