Guest User

Untitled

a guest
Aug 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <ion-grid>
  2. <!-- Assuming dynamicElements is an Array holding your items -->
  3. <ion-row *ngFor="let element of dynamicElements">
  4. <ion-col>
  5. {{element.name}}
  6. </ion-col>
  7. <!-- Your other columns go here -->
  8. <ion-col>
  9. <button ion-button>Button text</button>
  10. </ion-col>
  11. </ion-row>
  12. </ion-grid>
  13.  
  14. rowHeight = gridHeight / dynamicElements.length
Add Comment
Please, Sign In to add comment