First of all: Great work! Your code really helped me to get started with GWT / SmartGWT and GWT-Platform. Thank you!
Did you ever try to embed another webpage into the content-slot of the application. I've tried to achieve this with an HTMLpane.
But there is a big problem in my situation:
Everytime the browserwindow gets resized (maximized or minimized, smaller or bigger) the content of the HTMLpane gets reloaded completely. That means that it always shows the start-URL which is given the HTMLpane at the beginning.
The Code of the view is like this:
htmlPane2.setShowEdges(true);
htmlPane2.setContentsURL("http://www.wikipedia.com/");
htmlPane2.setContentsType(ContentsType.PAGE);
htmlPane2.setRedrawOnResize(false);
panel.setRedrawOnResize(false);
panel.addMember(htmlPane2);
...
}
@Override
public Widget asWidget() {
return panel;
}
Can you reproduce this issue?
What do you think the reason for this could be?
Greetings
wwwebrat