GWT:如何获取给定 FormPanel 的 Button 小部件引用?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
,则可以使用
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.