Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. <mvc:View
  2.  
  3. xmlns:mvc="sap.ui.core.mvc"
  4. xmlns:l="sap.ui.layout"
  5. xmlns:f="sap.ui.layout.form"
  6. xmlns:core="sap.ui.core"
  7. xmlns="sap.m" >
  8.  
  9. <VBox class="sapUiSmallMargin" >
  10. <f:Form id="Form"
  11. editable="true"
  12. ariaLabelledBy="Title1">
  13.  
  14. <f:layout>
  15. <f:ResponsiveGridLayout />
  16. </f:layout>
  17. <f:formContainers>
  18. <f:FormContainer ariaLabelledBy="Title2" >
  19.  
  20. <f:formElements>
  21. <f:FormElement >
  22. <f:fields>
  23. <Image
  24. src="icons/user.jpg"
  25. densityAware="false"
  26. width="60px" >
  27. <layoutData>
  28. <l:GridData span="L1 M1 S1" />
  29. </layoutData>
  30. </Image>
  31. <Input value="{SupplierName}" id="name">
  32. <layoutData>
  33. <l:GridData span="L11 M11 S11" />
  34. </layoutData>
  35. </Input>
  36. </f:fields>
  37. </f:FormElement>
  38. <f:FormElement >
  39. <f:fields>
  40. <Image
  41. src="icons/password.jpg"
  42. densityAware="false"
  43. width="60px" >
  44. <layoutData>
  45. <l:GridData span="L1 M1 S1" linebreak="true" />
  46. </layoutData>
  47. </Image>
  48. <Input value="{Street}" >
  49. <layoutData>
  50. <l:GridData span="L11 M11 S11" />
  51. </layoutData>
  52. </Input>
  53.  
  54. </f:fields>
  55. </f:FormElement>
  56.  
  57. </f:formElements>
  58.  
  59. </f:FormContainer>
  60.  
  61. </f:formContainers>
  62. </f:Form>
  63. </VBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement