Hello, everybody!
I've problem with HorizontalPanel layout.
What I have is:
<g:HorizontalPanel width="100%">
<g:cell width="100%">
<g:TextBox width="100%" ui:field="inviteEmail"/>
</g:cell>
<g:cell>
<g:Button ui:field="inviteButton" text="Invite"/>
</g:cell>
</g:HorizontalPanel>
I want to have a button on the right side and text input on the left
which automatically expands ands occupies rest of space . In pure HTML
this layout is:
<table width="100%">
<tr>
<td width="100%">
<input type="text" style="width:100%">
</td>
<td><button type="button">Invite</button></td>
</tr>
</table>
But the picture I got is slightly different. For some reason text
fields overlaps button.
Any ideas what I do wrong?
Thank you,
Andrey
--
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.