Hi,
I have a list of ion-itmes in a list and sometimes the content from one item overflows into the next item or is obscured by the next item.
This happens both when running “ionic serve” (android) on ubuntu, “ionic serve --lab” on ios and on my android device.
Has anyone else exeprienced this?
The view is snipped below (behaves the same if I take filters and orderby out):
<ion-view view-title=“The App”>
<ion-nav-buttons side=“secondary”>
<button class=“button button-icon icon ion-ios-search-strong” ng-click=“showFilterBar()”>
</button>
</ion-nav-buttons>
<ion-content padding=“true” scroll=“true”>
<ion-list>
<ion-item collection-repeat=“job in employment.jobOpenings | filter:employment.jobSearch | orderBy : ‘jobTitle’” class=“item-text-wrap”>
<h2 class=“title” style=“font-weight:bold”>{{job.jobTitle}}</h2>
<div style=“font-size:85%;”><span style=“font-weight:bold”>Job description:</span> {{job.jobDesc}}<br>
<span style=“font-weight:bold”>Requirements:</span> {{job.jobReqs}}<br>
<span style=“font-weight:bold;”>Location(s):</span> {{job.jobLoc}}</div>
</ion-item>
</ion-list>
</ion-content>
</ion-view>
My setup:
Cordova CLI: 6.0.0
Ionic Version: 1.2.4
Ionic CLI Version: 1.7.14
Ionic App Lib Version: 0.7.0
OS: Distributor ID: Ubuntu Description: Ubuntu 14.04.3 LTS
Node Version: v5.2.0
Cheers!