--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Looks to me like it could be an issue with your DockLayoutPanel not having a fixed size and not put within a ProvidesResize (and BTW, use height="450px" on your <g:DockLayoutPanel> rather than using CSS; as a rule of thumb, with GWT, do not use CSS for sizing, and more generally for layout; unless you're doing your layout yourself –using divs and SimplePanel/FlowPanels and the like–).For some reason, the DockLayoutPanel could figure out its dimensions on a "fresh load", but not when navigation from a previous activity.Just an idea; maybe not your issue, but definitely something to fix in your code at some point.
--
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/-/GbR3IPT171AJ.
As a quick and easy test, try setting an explicit height *and* width. If it indeed is the issue, then you'll have to either live with it, or put your DockLayoutPanel within a ProvidesResize widget (because DockLayoutPanel RequiresResize), possibly a ResizeLayoutPanel.--
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/-/8prxbbqdeR8J.
Hi,
--
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/-/cNX6AM2JCyMJ.
The problem is almost certainly your VerticalPanel (Thomas already
pointed that out). But I am not sure if setting the height and width
will remediate things...
Can you try to remove the VerticalPanel and check if it works?
Eg try that:
<g:DockLayoutPanel unit="PX" height="450px" width="700px">
<g:center>
<c:DataGrid ui:field="resultTable" />
</g:center>> </g:DockLayoutPanel>
Best,
Raphael
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
Does the Showcase work in IE7? http://gwt.google.com/samples/Showcase/Showcase.html#!CwDataGrid
--
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/-/cNX6AM2JCyMJ.