Hi all, I am trying to create a web app that will let you drag items from a left pane to a right pane. These panes must have overflow: auto on because there will definitely be more data in them than can fit in the provided space. The problem is that when overflow is set to auto, the div expands when the draggable object reaches the extents instead of the object existing outside that div while being dragged. I want to drag an item from left pane and drop on right pane target div. This is not working when using overflow:auto, as the item is going under right pane and not visible .
I am trying to create a web app that will let you drag
items from a left pane to a right pane. These panes must have
overflow: auto on because there will definitely be more data in them
than can fit in the provided space. The problem is that when overflow
is set to auto, the div expands when the draggable object reaches the
extents instead of the object existing outside that div while being
dragged.
I want to drag an item from left pane and drop on right pane target div.
This is not working when using overflow:auto, as the item is going under right pane and not visible .
Here is my code :
please find my attachments.
thanks,
sri..
thanks for reply.
I tried using zindex but no luck.
The scope should go beyond LeftPane to RightPane when used auto .
#LeftPane {
width: 150px; /* optional, initial splitbar position */
margin: 10px 0px 10px 10px;
background: #ffffff;
border: #b6b6b6 1px solid;
overflow:auto;
z-index:1000;
}
is it am i going wrong .?
please suggest me .
thanks.