Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GWT 2.4 を使用しています。id="save." のボタンを含む FormPanel への参照があります。フォーム パネル インスタンスから Button ウィジェットへの参照を取得するにはどうすればよいですか?
Button は formPanel の直接の子孫ではないため、「formPanel.getWidget()」は Button への参照を自動的に返さないことに注意してください。
ありがとう、 -
使用できます
formPanel.getWidget()、
formPanel.getWidget()
を使用している場合com.google.gwt.user.client.ui.FormPanel。FormPanel に追加したウィジェットへの参照を提供します。
com.google.gwt.user.client.ui.FormPanel