Customer.ui.xml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
  2. <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
  3. xmlns:g="urn:import:com.google.gwt.user.client.ui">
  4. <ui:style>
  5. .important {
  6. font-weight: bold;
  7. }
  8. </ui:style>
  9. <g:HTMLPanel>
  10. <g:DockPanel width="100%" height="100%">
  11. <g:Dock direction="CENTER">
  12. <g:VerticalPanel width="500px" height="">
  13. <g:HorizontalPanel width="100%" height="27px">
  14. <g:Button text="New Customer" ui:field="btnNew"/>
  15. </g:HorizontalPanel>
  16. <g:HorizontalPanel width="100%" verticalAlignment="ALIGN_TOP" ui:field="content" height="100%">
  17. </g:HorizontalPanel>
  18. </g:VerticalPanel>
  19. </g:Dock>
  20. <g:Dock direction="EAST">
  21. <g:VerticalPanel width="600px" height="100%">
  22. <g:HorizontalPanel height="10px" width="100%"/>
  23. <g:HorizontalPanel width="100%">
  24. <g:Button text="New Vehicle" ui:field="btnNewVehicle"/>
  25. </g:HorizontalPanel>
  26. <g:HorizontalPanel width="100%" verticalAlignment="ALIGN_TOP" ui:field="vContent"/>
  27. </g:VerticalPanel>
  28. </g:Dock>
  29. </g:DockPanel>
  30. </g:HTMLPanel>
  31. </ui:UiBinder>