Scrolling in dhtmlx Scheduler (3rd-Party-Plugin) is disabled

Hello together,

i implemented the dhtmlx Scheduler as a directive codepen. Now I have scrolling problems on different devices.

  • iPad 2 with iOS 7: Sometimes, the calendar is not scrollable. (I did not get out when)
  • iPad Air width iOS 8.1: Calendar disappears when clicking in the content.
  • iPad Air width iOS 8.1 (PhoneGap Developer App): everything works fine
  • Chrome Browser Device Mode: everything works fine

Many thanks for your help.

I have now figured out that when I use the side menu with <ion-side-menu-content> the scrolling isn’t working. If I use <ion-pane> the side menu isn’t working an the scrolling works.

<ion-side-menus>
<ion-side-menu-content  drag-content="true" edge-drag-threshold="true">
    <ion-nav-bar class="bar-positive nav-title-slide-ios7" with-custom-content >
        <ion-nav-back-button class="button-clear">
            <i class="icon ion-ios7-arrow-back"></i> Back
        </ion-nav-back-button>
    </ion-nav-bar>
    <ion-nav-view name="menuContent" animation="slide-left-right"></ion-nav-view>
</ion-side-menu-content>
</ion-side-menus>

vs

<ion-side-menus>
<ion-pane  drag-content="true" edge-drag-threshold="true">
    <ion-nav-bar class="bar-positive nav-title-slide-ios7" with-custom-content >
        <ion-nav-back-button class="button-clear">
            <i class="icon ion-ios7-arrow-back"></i> Back
        </ion-nav-back-button>
    </ion-nav-bar>
    <ion-nav-view name="menuContent" animation="slide-left-right"></ion-nav-view>
</ion-pane>
</ion-side-menus>

I also met the same problem, can you tell me how you solve it? let the side menu and the scrolling at the same time work. thanks!