Guest User

Untitled

a guest
Jun 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. var oTemp = new sap.m.ColumnListItem({
  2. vAlign: "Middle",
  3. cells: [
  4. new sap.m.VBox({
  5. items: [
  6.  
  7. new sap.m.Image({
  8. src: {
  9. path: "myModel>ImageLink",
  10.  
  11. },
  12.  
  13. densityAware:false,
  14. decorative: false,
  15. error: function(oEvent) {
  16. this.setSrc(oEvent.getSource().getProperty("src"));
  17.  
  18. }
  19. })
  20. ]
  21. })
  22. ]
  23. });
  24. otable.bindItems({
  25. path: "myModel>/Images",
  26. template: oTemp
  27. });
  28.  
  29. <m:Table id="imageTable">
  30.  
  31. <m:headerToolbar>
  32. <m:OverflowToolbar>
  33. <m:Title text="some text"/>
  34. </m:OverflowToolbar>
  35. </m:headerToolbar>
  36. <m:columns>
  37. <m:Column>
  38. </m:Column>
  39. </m:columns>
  40. </m:Table>
Add Comment
Please, Sign In to add comment