hi guys .. i am using the dragndrop facility of scriptaculous for the
first time and it works great so far.
i have one problem now. my html looks the following
<div id="pool">
<div id="pools">
<div>
<div id="pool_avail"></div>
</div>
</div>
</div>
pool_avil is populated with draggables ... and when i try to drag them
then they stay within the parent div .. which means i can drag them
within that div but when i move the mouse outside they dissapear.
pool_avail has an overflow:auto and the funny thing is that the
scrollbars change when i move the item outside.. thus this is the
proof for me that it is tied to the parent container (pool_avail).
maybe you need the styles for those elements as well: (note: pool is
position:fixed)
#pool {
position:fixed;
bottom:0px;
width:100%;
background-color:#FFFFCC;
border-top:1px solid #bbb;
}
#pools {
padding:10px;
}
#pool_avail, #pool_absent {
height:200px;
overflow:auto;
padding:0px 10px 10px 10px;
margin-top:1em;
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---