单击按钮时 Flex 工具提示消失
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过向 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.