I just recently got an android phone and found that the drag and drop on my site doesn't work! I understand why it wouldn't, but has anyone found a solution to this? I'm using JQuery to implement the D & D...
|
I used jQuery UI touch punch - it works by hacking the mousedown, mouseup features and replaces them with touchstart, touchend etc. ABOUT: http://touchpunch.furf.com/ SCRIPT: https://raw.github.com/furf/jquery-ui-touch-punch/master/jquery.ui.touch-punch.min.js CODE: include:
after your jquery UI script file in your header. |
|||||||||||
|
|
The iPhone at least has certain events such as ontouchstart, ontouchend, etc. These are part of webkit, but there is much less information with regards Android than iPhone. I think the answer to this question is that the drag and drop functionality needs to use those events rather than the events you would normally use, or needs to use both. This article may be of interest - http://backtothecode.blogspot.com/2009/10/javascript-touch-and-gesture-events.html |
|||
|
|
|
There is a jQuery drag and drop plugin that has support for mobiles / touch-screen devices: http://plugins.jquery.com/project/mobiledraganddrop On a mobile device, you tap to pick up the item and tap to select the drop location. This gets around the issue of drag actions being hijacked by the device / browser. |
|||||||||||
|
|
I found an example that work on my Android tablet touchscreen http://www.quirksmode.org/m/tests/drag.html It use "ontouchstart event" |
|||
|
|
|
Old thread I know....... I have here an solution that respects any input or other element that has to react on 'clicks' (for example inputs) on a draggable element. This solution made it possible to use any existing drag and drop library that is based upon mousedown, mousemove and mouseup events on any touch device (or cumputer). This is also a cross-browser solution. I have tested in on several devices and it works fast (in combination with the drag and drop feature of ThreeDubMedia (see also http://threedubmedia.com/code/event/drag)). It is a jQuery solution so you can use it only with jQuery libs. I have used jQuery 1.5.1 for it because some newer functions don't work properly with IE9 and above (not tested with newer versions of jQuery). Before you add any drag or drop operation to an event you have to call this function first:
You can also block all components/children for input or to speed up event handling by using the following syntax:
Here is the code i wrote. I used some nice tricks to speed up evaluating things (see code).
What it does: At first, it translates single touch events into mouse events. It checks if an event is caused by an element on/in the element that must be dragged around. If it is an input element like input, textarea etc, it skips the translation, or if a standard mouse event is attached to it it will also skip a translation. Result: Every element on a draggable element is still working. Happy coding, greetz, Erwin Haantjes |
|||
|
|

