Preferred way to use UiBinder with multiple screens
We have a GWT application that has multiple menu based screens. Thus, the application loads the user.
- Do it
- Do this
Each menu item loads a different screen. What is the best way to switch screens. Now I'm rude
RootPanel.get(CONTENT).remove(menu);
RootPanel.get(CONTENT).add(new DoThisScreen());
I ask this because in IE 8 (and I'm pretty sure 7.6) it seems that DoThisScreen is mostly not recognized by the IE Developer Tool (wannabe firebug tool when you press F12). Using IE dev tool I say to highlight a textbox in DoThisScreen, for some reason it won't highlight it or list it in html.
a source to share
What you are doing in GWT is fine. This issue is related to IE8 Developer Tools:
When changing the content of the HTML page, you need to click the Refresh button in the IE8 Developer Tools window (make sure you have the HTML tab selected in the Developer Tools window) before it shows you the new elements added to DOM.
a source to share