vote up 0 vote down star

I am having an undesired effect when I drag a div from a container div which is set as overflow: scroll.

I have found an example of someone else where they have had the issue but I have been unable to find a resolution

Example on Paste bin

What happens is that the scroll is just increased, I can see why this would be the desired behaviour if you wanted to drag to a destination within the scrollable div but I want to be able to take it outside of its scrolling grasp.

Thanks, Phill

flag

77% accept rate

2 Answers

vote up 0 vote down check

It certainly pays to pay attention to the documentation

http://jqueryui.com/demos/draggable/#option-scroll

All who enter here, learn from my mistake, RT(F)M!!!

link|flag
vote up 0 vote down

appendTo

Element, SelectorDefault:'parent'

The element passed to or selected by the appendTo option will be used as the draggable helper's container during dragging. By default, the helper is appended to the same container as the draggable.

Code examples Initialize a draggable with the appendTo option specified.

$('.selector').draggable({ appendTo: 'body' });
link|flag
I tried to do as you suggest but it is not changing it to the desired behaviour, when you add the code you mentioned into the example on the Paste bin page, does it work for you? Thanks – Phill Duffy May 4 at 17:22
yeah, I totally fail on this question. I played with it for an hour. The best I can get is how I left it, draggable doesn't work with overflow :( – Chad Grant May 4 at 20:25
No worries, I appreciate your effort! :) – Phill Duffy May 5 at 9:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.