On my iPad, I have two scrollable areas where I kept the overflow to auto, scroll, or hidden to allow scrolling. One section contains unenrolled students, and using JQueryUI with touchPunch, I can drag a student from the unenrolled bin into their appropriate class.
However, there is an issue when I set the overflow to allow scrolling. I believe I may need to remove the element from its parent before dragging it, and then append it back to the droppable container upon drop.
You can see this in action on JS Bin here: http://jsbin.com/aPaHiVi/3/edit
This contains 1 working example and 1 not-working example
I'm unsure how to override the default draggable code to achieve two things:
Set the dragged element to the same position but as a child of its parent's parent
Place the element as a child of the dropped container in the correct position
Any guidance on this matter would be greatly appreciated!
Thank you for taking the time to read this