jquery-ui-touch-punch icon indicating copy to clipboard operation
jquery-ui-touch-punch copied to clipboard

Scroll inside draggable elements contents doesn't work on Ipad

Open Bob0 opened this issue 12 years ago • 6 comments

Bob0 avatar Jul 08 '12 15:07 Bob0

I am experiencing this issue as well - i hope i will come up with a solution. I have a long list of draggable items that need to be scrollable as well, I tried to solve it by using the delay option of draggable() but still the scrolling is disabled..

tmaximini avatar Aug 15 '12 10:08 tmaximini

I am experiencing this issue too..

milescui avatar Aug 30 '12 08:08 milescui

I have this issue with sortable - my list of sortable items needs to be scrollable too, and the scrolling is disabled.

nickelodeon avatar Sep 02 '12 09:09 nickelodeon

basically what i did to re-enable scrolling was:

  1. remove the e.preventDefault() call on the touchHanlder, this enables scrolling
  2. tell my scrollables to only fire when they are moved at least 30px horizontally (you can set the 'distance' option in scrollable options)
  3. modify jqueryui so that 'distance' only tracks horizontal events as trigger...

now i have again a scrollable area with draggable elements... see also my SO question here: http://bit.ly/T6687U

tmaximini avatar Sep 02 '12 10:09 tmaximini

+1

samccone avatar Jan 18 '14 17:01 samccone

From my point of view the best solution is this: http://stackoverflow.com/questions/19283780/draggable-is-blocking-touch-event

felixschul avatar Oct 13 '15 12:10 felixschul