私はGWTを使用しています。ホストページに以下のコードがあります。
<div id="mainDiv"/>
<iframe id="__printingFrame" style="width:0;height:0;border:0"> </iframe>
EntryPoint の onModuleLoad() には、以下のコードがあります。
@Override
public void onModuleLoad() {
RootPanel.get("mainDiv").add(new SomePage());
}
私がやっている SomePage.java のメソッドの1つで:
RootPanel rootPanel = RootPanel.get("__printingFrame");
rootPanel.add(new Html(" "));//adding some widget
しかし、上記の行の bcaz は例外を下回っています。ここで何か不足していますか?
java.lang.AssertionError: A widget that has an existing parent widget may not be added to the detach list
at com.google.gwt.user.client.ui.RootPanel.detachOnWindowClose(RootPanel.java:136)
at com.google.gwt.user.client.ui.RootPanel.get(RootPanel.java:211)
ありがとう!