can not scroll down and up with finger in event container on mobile
See original GitHub issueDescribe the bug
Minimal reproduction of the problem with instructions
Screenshots
Versions
@angular/core
:angular-calendar
:- Browser name and version:
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
Single finger Scrolling for inner contents (div/iframes) in ...
Is there any way to provide single finger scrolling on the inner 'div' or 'iframes' contents using javascript or iphone safari Touch API...
Read more >touch-action - CSS: Cascading Style Sheets - MDN Web Docs
Note that scrolling "up" (pan-up) means that the user is dragging their finger downward on the screen surface, and likewise pan-left means the ......
Read more >Scroll View touch input on mobile - scroll by drag - Unity Forum
Maybe it's a simple fix, but using the workaround code above my scrollview has several "controls" inside of it (radiobuttons, toggles...), and ...
Read more >Manage touch events in a ViewGroup - Android Developers
ACTION_UP -> { // Release the scroll. mIsScrolling = false false // Do not intercept touch event, let the child handle it }...
Read more >ScrollView - React Native
In order to bound the height of a ScrollView, either set the height of the view directly (discouraged) or make sure all parent...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is caused by
hammerjs
as it addstouch-action: none
to all clickable areas which prevents scrolling. If you add this to your apps global css it should fix it:Hope that helps! 😄
I found a working solution using this approach. Instead of
I use
I am using month view only, so for week/day view you have to add the condition respectively. Not pretty but it works.