I have this code:
sessionListView.list.addEventListener('swipe', function(e){ if (e.direction=='right') { $.drawermenu.showmenu(); } if (e.direction=='left') { $.drawermenu.hidemenu(); } });which causes the listview to only scroll while you are touching the screen, as soon as you let off the ListView stops scrolling. When I comment this code out my listview scrolls properly. Is there any way to fix this?
I've also tried to put the event listener on the entire view but the listview still doesn't behave properly.
Thanks, Kenny