GWT:当鼠标消失时使PopupPanel消失

发布于 2024-11-16 08:38:46 字数 278 浏览 4 评论 0原文

这是 GWT PopupPanel 展示案例: http://gwt.google.com/samples/Showcase/Showcase.html# !CwBasicPopup

当用户单击面板时,面板隐藏。

我需要的是当用户将鼠标移出面板区域时使其隐藏...

如何实现?

Here is GWT PopupPanel ShowCase:
http://gwt.google.com/samples/Showcase/Showcase.html#!CwBasicPopup

The Panel got hide when the user click out the panel..

What I need is to make it hide when the use move the mouse out the area of the Panel...

How to accomplish that?

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

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

发布评论

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

评论(2

人生百味 2024-11-23 08:38:46
yourPopupPanel.addDomHandler(new MouseOutHandler() {
    public void onMouseOut(MouseOutEvent event) {
        yourPopupPanel.hide();
    }
}, MouseOutEvent.getType());
yourPopupPanel.addDomHandler(new MouseOutHandler() {
    public void onMouseOut(MouseOutEvent event) {
        yourPopupPanel.hide();
    }
}, MouseOutEvent.getType());
夏至、离别 2024-11-23 08:38:46
    popuppanel.addMouseOutHandler(new MouseOutHandler()

{
  public void onMouseOut(MouseOutEvent event)
   {
      popuppanel.hide();
    }
    });
    popuppanel.addMouseOutHandler(new MouseOutHandler()

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