Javascript:

Drag.Move.implement({
    checkAgainst: function(el, i){
        var scroll = el.getScrolls();
        el = el.getCoordinates();
        el.left = el.left + scroll.x;
        el.right = el.right + scroll.x;
        el.top = el.top + scroll.y;
        el.bottom = el.bottom + scroll.y;
        var now = this.mouse.now;
        return (now.x > el.left && now.x < el.right && now.y <
el.bottom && now.y > el.top);
    }
});
var list_sortables = new Sortables('#ul_list', {
        clone: true
});

CSS:

#container{
  height: 200px;
  overflow: scroll;

}
#ul_list {
  position:relative;
}
#ul_list li{
  border: 1px solid grey;
  padding: 5px;
  margin: 2px;

}



KASI


On 7 Aug., 15:05, Shrike <[email protected]> wrote:
> Can you help me to use the workaround with this example?
>
> http://mooshell.net/vTa4N/

Reply via email to