Shipping.view.xml 830 B

123456789101112131415161718192021222324252627282930
  1. <mvc:View
  2. xmlns="sap.m"
  3. xmlns:mvc="sap.ui.core.mvc"
  4. xmlns:f="sap.ui.layout.form">
  5. <VBox>
  6. <f:SimpleForm id="SimpleFormShipAddress"
  7. editable="false"
  8. layout="ResponsiveGridLayout"
  9. title="{i18n>detailShippingAddressTitle}"
  10. labelSpanL="3"
  11. labelSpanM="3"
  12. emptySpanL="4"
  13. emptySpanM="4"
  14. columnsL="1"
  15. columnsM="1" >
  16. <f:content>
  17. <Label text="{i18n>detailName}" />
  18. <Text text="{ShipName}" />
  19. <Label text="{i18n>detailShippingStreet}" />
  20. <Text text="{ShipAddress}" />
  21. <Label text="{i18n>detailShippingZIPCodeCity}" />
  22. <Text text="{ShipPostalCode} {ShipCity}" />
  23. <Label text="{i18n>detailShippingRegion}" />
  24. <Text text="{ShipRegion}" />
  25. <Label text="{i18n>detailShippingCountry}" />
  26. <Text text="{ShipCountry}" />
  27. </f:content>
  28. </f:SimpleForm>
  29. </VBox>
  30. </mvc:View>