Well, the answer seems to be in the documentation. In particular , Project Management describes how we can bind different widgets to a different identifier on the page. Therefore, I can effectively do something like:
# html <div id="id_table"></div> <div id="id_next_button"></div> # java t = new FlexTable() RootPanel.get("id_table").add(t); nextbtn = new Button("next"); RootPanel.get("id_next_button").add(nextbtn);
Wohoo!
source share