danielriveraarenas / nestedsortables

Automatically exported from code.google.com/p/nestedsortables
GNU General Public License v2.0
0 stars 0 forks source link

Sorting fails in scrolled div (overflow:auto) #13

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Place the sortable table in a div with height less then table height
2. Add overflow:auto; so the div becomes scrollable
3. Scroll down a little and try yo sort the entries

For example, take the widget demo and replace 
<div id="ajax-response4"></div>
with
<div id="ajax-response4" style="height:200px; overflow:auto;"></div>
scroll to the bottom and try to rearrange the items.

What is the expected output? What do you see instead?
Instead of sorting normally, the widget does not account for the scrolling
so entries are not added where the mouse is but rather upwards as if the
div is not scrolled.

Original issue reported on code.google.com by kallaspr...@gmail.com on 10 Apr 2009 at 10:40