I'm having some problems while implementing jQuery Draggable http://jqueryui.com/demos/draggable/ on Android. I've created the html code and tested it using my browser. Then I compiled it on build.phonegap.com. After getting the .apk I installed it on my xperia x8 which is using Android 2.2 Froyo. The application ran well, but when I dragged the object it won't move.. Is there something wrong with my method? Thanks
feedback
|
|
This code maps My idea to fix this is to delay the
| |||||||||||
feedback
|
|
you can check out this question for a couple of suggestions and explanation of what is/isn't possible right now. It's my opinion that jQuery Mobile will probably have this as a possibility sooner or later. | |||
|
feedback
|
|
As an extension to Nappy's answer: I have tried his code snippet on an app I am building for Android devices. It compiles fine and I am able to drag (in my case, a square) around, however the touchmove mouse event type only fires for 2 seconds and then stops. This gives the impression that the object is not draggable, however on release, the object is moved to that location. To fix this a simple one line of code is needed within the event listener:
originalEvent.preventDefault();
The override of preventDefault fixes the issue with the mousedown handler not firing. | |||
|
feedback
|
|
To make clicks also work...
| ||||
|
feedback
|