Preferred way of using UiBinder with multiple screens
Posted
by arinte
on Stack Overflow
See other posts from Stack Overflow
or by arinte
Published on 2010-05-19T18:56:20Z
Indexed on
2010/05/19
20:00 UTC
Read the original article
Hit count: 374
gwt
|internet-explorer-8
We have a GWT app that has multiple screens, based off of a menu. So App loads user sees
- Do This
- Do That
Each menu item loads a different screen. What is the best way to switch the screens. Right now what I do roughly is
RootPanel.get(CONTENT).remove(menu);
RootPanel.get(CONTENT).add(new DoThisScreen());
I ask this because it seems on IE 8 (and I am sure 7,6) that the DoThisScreen is basically not recognize by IE's Developer Tool (wannabe firebug tool, when you press F12). Using IE's dev tool I tell it to highlight a textbox in the DoThisScreen, for some reason it won't highlight it or list it in the html.
© Stack Overflow or respective owner