our colleague just found that in IE9, the following is not work:
DockLayoutPanel dockLayoutPanel = new DockLayoutPanel(Unit.PX);
> dockLayoutPanel.setSize("1024", "768");
>
the dockLayoutPanel will not shown (although it works in IE8).
In IE9, we must write the px in setsize
> DockLayoutPanel dockLayoutPanel = new DockLayoutPanel(Unit.PX);
> dockLayoutPanel.setSize("1024px", "768px");
>
why this is the case?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-web-toolkit/-/m7WnmK8CLq8J.
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.