draggable div with style overflow auto
Hello,
I have a div as a container (id="w_ueber"). This div is draggable.
In this div I have another div (id="w_data") and in this div are div like rows. After 10 "row divs" I got the scrollbar (style of div (id="w_data") is overflow:auto.
But I cann't use the scrollbar to go up or down. Only the draggable function of the container div (id="w_ueber")is active.
What is neccessary to get the function draggable and using the scrollbars?
Here a short description of my div layout:
<div id="w_ueber" <- is draggable
<div id="w_data" <- scrolling is not possible
<div id="data_1"</div>
<div id="data_1"</div>
<div id="data_1"</div>
.....
</div>
</div>
Here the jQuery function:
$(document).ready(function(){
$("#w_ueber").draggable({ cursor: 'move'});
....
Thanks
Josef