12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
- <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
- xmlns:g="urn:import:com.google.gwt.user.client.ui">
- <ui:style>
- .important {
- font-weight: bold;
- }
- </ui:style>
- <g:HTMLPanel>
- <g:DockPanel width="100%" height="100%">
- <g:Dock direction="CENTER">
- <g:VerticalPanel width="500px" height="">
- <g:HorizontalPanel width="100%" height="27px">
- <g:Button text="New Customer" ui:field="btnNew"/>
- </g:HorizontalPanel>
- <g:HorizontalPanel width="100%" verticalAlignment="ALIGN_TOP" ui:field="content" height="100%">
- </g:HorizontalPanel>
- </g:VerticalPanel>
- </g:Dock>
- <g:Dock direction="EAST">
- <g:VerticalPanel width="600px" height="100%">
- <g:HorizontalPanel height="10px" width="100%"/>
- <g:HorizontalPanel width="100%">
- <g:Button text="New Vehicle" ui:field="btnNewVehicle"/>
- </g:HorizontalPanel>
- <g:HorizontalPanel width="100%" verticalAlignment="ALIGN_TOP" ui:field="vContent"/>
- </g:VerticalPanel>
- </g:Dock>
- </g:DockPanel>
- </g:HTMLPanel>
- </ui:UiBinder>
|