Jquery UI可拖动不滚动可排序容器

时间:2013-01-09 16:40:36

标签: jquery jquery-ui jquery-ui-sortable jquery-draggable

我有一些可拖动的项目(#draggable li),我将它们拖放到可排序的(#sortable)中。

sortable由两个div包裹,最外面的div有overflow-y:scroll。拖放机制工作正常,直到可排序列表扩展和滚动。

当我尝试拖动并直接在可排序项上放置一个项目时,我无法使用可排序的滚动条以我想要的方式自动滚动(比如想要上升到第一个元素之上或者向下移动到落在最后一个元素之下)。但是当我尝试在它们之间拖动和排序项目时,滚动条会在拖动时自动滚动。

这是一个错误还是我的代码工作方式有错误。

以下是完整的代码:

<body>
    <ul id="draggable" class="connectedSortable">
        <li class="ui-state-default big">Item 1</li>
        <li class="ui-state-default big">Item 2</li>
        <li class="ui-state-default big">Item 3</li>
        <li class="ui-state-default big">Item 4</li>
        <li class="ui-state-default big">Item 5</li>
        <li class="ui-state-default big">Item 6</li>
    </ul>

  <div id="outerDiv">
    <div id="innerDiv">
      <ul id="sortable" class="connectedSortable">
      </ul>
    </div>
  </div>
</body>

// CSS

#sortable, #draggable { 
  list-style-type: none; 
  margin: 0; 
  padding: 0 0 2.5em; 
  margin-right: 10px; 
}
#sortable li, #draggable li { 
  margin: 0 5px 5px 5px; 
  padding: 5px; 
  font-size: 1.2em; 
  width: 120px; 
}
.marker{
    background: none repeat scroll 0 0 #DDDDDD;
    border-bottom: 1px solid #BBBBBB;
    border-top: 1px solid #BBBBBB;
    display: block;
    height: 20px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    color: #666;
    font-size: 18px;
    font-style: italic;
}

#outerDiv{
    background: none repeat scroll 0 0 #EEEEEE;
    height: 100%;
    right: 0;
    position: absolute;
    overflow-y: scroll; 
    top: 0;
    width: 300px;
}

#innerDiv{
    border: 1px solid #CCCCCC;
    min-height: 400px;
    position:absolute;
}
#sortable{
    width: 200px;
    padding: 10px;
    border : 1px solid black;
    min-height: 230px;
}

#draggable{
    position:absolute;
    top:0;
    left:0;
}
.big{
    height: 80px;
}

// JS

$(function() {
  $( "#sortable" ).sortable({
       placeholder: "marker",
       axis: "y",
  });

  $("#draggable li").draggable({
      helper: "clone",
      cursor: "move",
      revert: "invalid",
      revertDuration: 500,
      connectToSortable: "#sortable"
  });
});

小提琴演示http://jsfiddle.net/8KDJK/21/

非常感谢任何帮助。谢谢:))

2 个答案:

答案 0 :(得分:6)

我不确定这是一个错误,但它不是一个经典的场景。

我花了很多时间在几个月前找到解决方法,这是我的解决方案:http://jsfiddle.net/8KDJK/23/

它现在已经工作了好几个月了。

我们的想法是在辅助器构造回调中将元素clone附加到可滚动容器中,然后在1ms后使用setTimeout函数将辅助器附加到body,以便能够在网页周围拖动。

  $("#draggable li").draggable({
      cursor: "move",
      revert: "invalid",
      revertDuration: 500,
      connectToSortable: "#sortable",

      //Here is the workaround 
      //**********************

      containment: 'body',
      helper: function(){ 
        //Hack to append the element to the body (visible above others divs), 
        //but still bellonging to the scrollable container  
        $('#sortable').append('<div id="clone" class="ui-state-default big">' + $(this).html() + '</div>');   
        $("#clone").hide();
        setTimeout(function(){
            $('#clone').appendTo('body'); 
            $("#clone").show();
        },1);
        return $("#clone");
    }
  });

链接到我之前的问题:JqueryUI, drag elements into cells of a scrolling dropable div containing large table

答案 1 :(得分:2)

解决方案:

不要使用overflow:auto;

但是

溢出:可见;