Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-03-01 Thread Chris Lercher
Hi, you could try to start with the smallest possible ScrollPanel structure possible (for example the one from my post above), see if it works, and then add half of your inner structure, see if it still works etc. The problem seems to occur in some special combinations - let's find out what exact

Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-03-01 Thread Thoka
No that didn't seem to fix it. :-( I've found a similar story here http://www.mail-archive.com/google-web-toolkit@googlegroups.com/msg09934.html I've tried to remove zoom: 1 from both the ScrollPanel and the content (first child) this did not work either. Anybody got a clue or has met the same

Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-03-01 Thread rudolf michael
Hello there, try to add this meta tag in your html head, it did fix the popup panel's CSS issues that i used to have when using GWT 1.7 and IE8 Hope it helps. regards, Rudolf Michael On Mon, Mar 1, 2010 at 1:20 PM, Thoka wrote: > Hi, > > I'm getting the same problem. I have a list (dynamic it

Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-03-01 Thread Thoka
Hi, I'm getting the same problem. I have a list (dynamic item list) that is wrapped inside of a ScrollPanel. When first displaying the list it looks fine (like it did on 1.5-1.7) but when I change ANYTHING in any of the surrounding widgets, e.g. changing text in a label or adding an extra stylenam

Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-02-28 Thread Chris Lercher
Hi Tapas, here's a table explaining the connection between doctype and strict mode/quirks mode: http://hsivonen.iki.fi/doctype/ You're using XHTML - I don't know how well this works with GWT, I think I've read about some problems with that here on the forum. The default doctype for GWT 2.0 projec

Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-02-28 Thread Tapas Adhikary
Chris , Thanks a lot for the suggestion that we should not attempt to remove the style attribute for IE8 . I will keep the suggestion in mind. I didn't get the first part of your reply. >I know the blank page phenomenon only from the following >constellation: >Quirks mode + RootLayoutPanel + IE W

Re: IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-02-27 Thread Chris Lercher
Hi, I know the blank page phenomenon only from the following constellation: Quirks mode + RootLayoutPanel + IE So either use standards mode (), or use RootPanel. BTW (independently from GWT), "zoom:1" helps IE<8 to assign "hasLayout" to elements which usually don't. This is especially needed in

IE8 is showing up Blank Screen if ScrollPanel is used after upgrading to GWT 2.0

2010-02-26 Thread Tapas Adhikary
I was using GWT 1.7 in My Application. One of my page is using ScrollPanel. Since I upgraded to GWT 2.0 , I am getting a blank screen where scrollPanel is used. Using the F12 DOM debugging I found , GWT 2.0 includes with an extra child DIV for Scroll Panel. And the DIV has a style of position:relat