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:relative and Zoom:1. This DIV is not there if I use GWT 1.6. If I
remove the style of the extra DIV from debug window , I am able to see the
page rendering.
I have tried to do the following from GWT java class,
right.getElement().getFirstChildElement().setAttribute("style", ""); //
where right is the Scroll Panel
But this is not working in IE8 . it works good for Mozilla Firefox and
Chrome browser.
Any help , what I should do to remove the style programmatically for IE8 ?
Or is there any other way to deal with that ?
Thanks,
-Tapas
--
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.