One thing you might want to check. I was building a login page in GWT and decided to put a background panel that covered the entire screen, with a FormPanel inside that (absolute positioned) and other stuff inside the FormPanel. On Firefox this showed up somewhat off-screen. On IE7, it showed a completely blank screen. I found that GWT was generating a RootLayoutPanel <div> with 'overflow:hidden'. When I added a style to the RootLayoutPanel and set overflow:scroll instead, both IE7 and Firefox correctly showed the FormPanel and its contents in the middle of the screen.
Check the <div> for the root layout panel, and see what you have there. Cheers, Dave On Aug 23, 2:08 am, Lukasz <[email protected]> wrote: > I have the same problem - so I would be very interested if you have > found a solution or cause of it. My assumption is, that the ie7 > rendering problems are related to my own CSS - are you also using > custom CSS styles for the standard components? > > Kind regards, > Lukasz > > On Aug 20, 7:21 pm, Greg Dougherty <[email protected]> wrote:> I > have a web app that displays just fine in the Mozilla browsers, but > > does not display at all in IE 7 (totally blank screen). I'm deploying > > this through Tomcat (see previous message about Development Mode not > > working with JDK 1.5), so I can't usefully follow it in the debugger > > (the issues are on the client side, since my app does not yet do > > anything useful with the server). Any suggestions on what might be > > going wrong? > > > TIA, > > > Greg -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
