Not sure I fully understand what you want but I was able to modify my
'west' panel to add a button after the stacklayoutpanel. It may be you
need to add some size controls but couldn't tell if that was the issue
from your description. Here is what I have:
<g:LayoutPanel width="100%" height='100%'>
<g:layer top='2em' bottom='0'>
<g:Label addStyleNames="{style.center}">
Label Categories
</g:Label>
</g:layer>
<g:layer top='4em' bottom='10%'>
<g:StackLayoutPanel ui:field="stackLayout" unit='EM'>
<g:stack>
<g:header size='2'> Lorem ipsum
</g:header>
<g:VerticalPanel ui:field="vertPanel">
<g:Label> dignissim </g:Label>
<g:Label> qui blandit </g:Label>
<g:Label> praesent luptatum
</g:Label>
</g:VerticalPanel>
</g:stack>
<g:stack>
<g:header size='2'> Duis autem
</g:header>
<g:VerticalPanel>
<g:Label>nonummy </g:Label>
<g:Label>adipiscing</g:Label>
<g:Label>nostrud</g:Label>
<g:Label>ullamcorper</g:Label>
<g:Label>convallis</g:Label>
</g:VerticalPanel>
</g:stack>
<g:stack>
<g:header size='2'> Donec
pellentesque</g:header>
<g:VerticalPanel>
<g:Label>dolore</g:Label>
</g:VerticalPanel>
</g:stack>
</g:StackLayoutPanel>
</g:layer>
<g:layer top='90%' bottom='0'>
<g:Button>submit</g:Button>
</g:layer>
</g:LayoutPanel>
Rud
http://mysticlakesoftware.com
On Oct 10, 2:36 pm, giannisdag <[email protected]> wrote:
> Hi I have set the following structure in UiBinder:
>
> <g:DockLayoutPanel unit='EM'>
> <g:north size='10'>
> </g:north>
> <g:center>
> <g:StackLayoutPanel unit='EM'>
> <g:stack>
> <g:header size='3'>ÐñïóùðéêÜ óôïé÷åßá</g:header>
> <g:HTMLPanel>
> </g:HTMLPanel>
> </g:stack>
> </g:StackLayoutPanel>
> </g:center>
> <g:south size='4'><g:HTMLPanel>south</g:HTMLPanel>
> </g:south>
> </g:DockLayoutPanel>
>
> It is not exactly the real one, but a simple example of it. It is a
> registration form where the fields are in the StackLayoutPanel, so I
> want to have a save button, which will be pushed to save the data. I
> wanted it to be after the StackLayoutPanel. But whether I have used
> <g:HtmlPanel> or <g:LayoutPanel> in different ways, between <center></
> center> the StackLayoutPanel doesn' t seem to work. I have noticed,
> that there is an element.style that gets value position=relative in
> StackPanel, when I am using <g:HTMLPanel>. Has someone faced a same
> situation to give me a clue? The main issue is that when I use the
> <center></center> I cannot use the StackLayoutPanel with other divs to
> design the interface.
--
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.