I am creating an app that makes use of ion-scrolls to show rows of data for a mobile app using ionic.
My problem is that when I use a ion-scroll to be able to scroll through lots of data I lose that ability to page scroll unless scrolling on different elements.
I want to be able to scroll through the ion-scroll horizontally but also be able to scroll the page vertically.
I have bastardised an existing code pen example but it shows my problem very well.
In the example you can scroll the page by clicking on the header but you can't scroll the page when clicking on the ion scroll (which is taking up most of the page).
http://codepen.io/anon/pen/EjMqBa
<ion-scroll delegate-handle="calendarScroll" direction="x">
<div class="row">
<div class="col col-20" ng-repeat="day in payPeriod.days">
<div class="row">
<div class="col">{{day.name}}</div>
</div>
<div class="row">
<div class="col">{{day.number}}</div>
</div>
</div>
</div>
</ion-scroll>