I've got the following setup: - a semi-transparent div that covers the whole browser window - a box div on top of the background with sortable items in it
<div id="background"></div> <-- this has z-index:1000 <div id="box"></div> <-- z-index: 1001 Now, if I set the background div as a droppable so that I could drop the sortables in it, the droppable still works even if I drop inside the box div. So it seems jQuery interprets that even though there's the box div in the way, the background is a valid droppable area. Is there any way to make this work so that the box div area does not activate the drop? Also, why am I unable to use sortables to put into droppables in jQuery 1.3.2 + jQuery UI 1.7? I'd use the droppable to append any sortables dropped in into another div. It seems that the event fires ok but the sortables are just returned to their former position. In 1.2.6 + UI 1.5.3 this all works just fine. If I change the sortables to draggables then it works. Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
