GWT 自定义小部件高度

发布于 2024-09-10 16:23:00 字数 289 浏览 3 评论 0原文

我需要一个自定义小部件高度。我尝试使用它

Integer.toString(yourWidget.getElement().getOffsetHeight())

,但是,

  • 如果我在创建它或将其添加到容器面板时使用它,它会返回 0
  • 如果我在容器面板的 onLoad 方法中使用它,它会返回小部件之前的高度应用样式

那么,应用样式后我什么时候应该使用它来获取小部件的高度呢?

多谢!

I need a custom widget height. I tried using this

Integer.toString(yourWidget.getElement().getOffsetHeight())

but,

  • If I use it when I create it or add it to the container panel, it returns 0
  • If I use it in the contrainer panel's onLoad method, it returns the widget height before the style is applied

So, when should I use it to get the widget height after the style is applied?

Thanks a lot!

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

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

发布评论

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

评论(3

无所谓啦 2024-09-17 16:23:00

我不知道您是否已经解决了您的问题,但是使用 JSNI 的一个选项将确保小部件创建完成。

实现此目的的一种方法是使用 Deferred 命令:

    DeferredCommand.addCommand(new Command() {
        public void execute() {
            // Ask here for the height
        }
    });

I don't known if you've solved your problem already, but an option to use JSNI would be making sure that the widget creation is finished.

A way of achieving that is with the Deferred command:

    DeferredCommand.addCommand(new Command() {
        public void execute() {
            // Ask here for the height
        }
    });
不交电费瞎发啥光 2024-09-17 16:23:00

似乎与此处暴露的问题是同一类问题:GWT - 检索未显示的小部件的大小

他们使用了一种使用 JSNI 的解决方法来完成他们想要的操作,也许类似的技巧也适合您。

Seems to be the same kind of problem that the one exposed here: GWT - Retrieve size of a widget that is not displayed

They used a workaround using JSNI to do what they wanted, maybe a similiar trick will work for you as well.

挽容 2024-09-17 16:23:00

我认为 onAttach 或 onLoad 会是一个很好的选择。

@Override
protected void onLoad() {
   super.onLoad();
   //do sth
}

I think onAttach or onLoad would be a good catch..

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