GWT:如何获取给定 FormPanel 的 Button 小部件引用?

发布于 2024-12-17 08:03:24 字数 192 浏览 3 评论 0原文

我正在使用 GWT 2.4。我有一个对 FormPanel 的引用,其中包含一个 id="save" 的按钮。如何在给定表单面板实例的情况下获取对 Button 小部件的引用?

请注意,Button 不是 formPanel 的直接后代,因此“formPanel.getWidget()”不会自动返回对 Button 的引用。

谢谢, -

I'm using GWT 2.4. I have a reference to a FormPanel, which contains a Button, with id="save." How do I get a reference to the Button widget given the form panel instance?

Note, that Button is not a direct descendant of formPanel, so "formPanel.getWidget()" will not automatically return a reference to the Button.

Thanks, -

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

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

发布评论

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

评论(1

梦太阳 2024-12-24 08:03:24

,则可以使用

formPanel.getWidget()

如果您使用的是 com.google.gwt.user.client.ui.FormPanel 。它将为您提供对已添加到 FormPanel 中的小部件的引用。

You can use

formPanel.getWidget(),

if you're using com.google.gwt.user.client.ui.FormPanel. It will give you the reference to the widget you've added in the FormPanel.

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