using the ionic example and it doesnt appear to be working in ionic2… am I missing something simple?
Ionic 2 grid system works like this:
<ion-row>
<ion-col width-50></ion-col>
<ion-col width-50></ion-col>
<ion-row>
@aaronksaunders I’m using the grid component right now and it seems to be working ok. I just followed the docs here and it seems to work ok - maybe you’re doing something more complicated?
i got it working, but seeing different results in chrome and safari… and i really cannot get the layout working properly using a grid, will have to manually lay it out.
Have you been able to get the grid system to work like an image gallery??
any chance for a masonry example with ionic grids? For pinterest type layouts
This Above Image is table created in Ionic 1 using row and col 25.
now I can’t achieve this ionic 2. I am using grid and my output is something like this-
here goes my code -
<ion-grid>
<ion-row wrap *ngFor="let res of ResArray">
<ion-col width-25> {{ res.fullname }}</ion-col>
<ion-col width-25> {{ res.email }}</ion-col>
<ion-col width-25> {{ res.tel }}</ion-col>
<ion-col width-25> <button ion-button small color="danger" (click)="gotoDetails(res)"> Details</button></ion-col>
</ion-row>
</ion-grid>
change this
<ion-row>
<ion-col width-50></ion-col>
<ion-col width-50></ion-col>
<ion-row>
to this
<ion-row>
<ion-col col-6></ion-col>
<ion-col col-6></ion-col>
<ion-row>
They reworked the grid system: https://ionicframework.com/docs/components/#grid
Thanks @LoLStats, still getting same output.
the mailid I am printing is bit long and it’s getting wrapped in col-25.
<ion-grid>
<ion-row wrap *ngFor="let res of ResArray">
<ion-col col-25> {{ res.fullname }}</ion-col>
<ion-col col-25> {{ res.email }}</ion-col>
<ion-col col-25> {{ res.tel }}</ion-col>
<ion-col col-25> <button ion-button small color="danger" (click)="gotoDetails(res)"> Details</button></ion-col>
</ion-row>
</ion-grid>
It should be col-3 instead of col-25. It’s based on a 12 column default now.
Yes I forgot to edit my example
thanks @EvanW .
just have a look at the output. don’t know what I am missing or is there bug ?
Well your text is too much to fit without text-wrap. Try adding the text-wrap attribute but it will make some text take up two lines.
Also, read the docs and mess with padding so that the text can go closer to the edges of a box and that may help.