0
我試圖使用msjarfatti的nestedSortable插件(https://github.com/mjsarfatti/nestedSortable)jQuery UI的嵌套排序拖放區域
連接兩個名單我已經在這裏設置一個測試http://jsfiddle.net/gcWQQ/46/
HTML:
<h4>SELECTIONS</h4>
<ul id="selections">
<li><div>Section 1.0</div></li>
</ul>
<br>
<h4>CONTENT SET</h4>
<ul id="content">
<li>
<div><h4>Headline Here</h4><p>Metadata here</p><p>Article snippet goes here and it can get to be very long. Lorem ipsum dolor sit amet. Blah blah more text here.</p></div>
</li>
<li>
<div><h4>Headline Here</h4><p>Metadata here</p><p>Article snippet goes here and it can get to be very long. Lorem ipsum dolor sit amet. Blah blah more text here.</p></div>
</li>
<li>
<div><h4>Headline Here</h4><p>Metadata here</p><p>Article snippet goes here and it can get to be very long. Lorem ipsum dolor sit amet. Blah blah more text here.</p></div>
</li>
<li>
<div><h4>Headline Here</h4><p>Metadata here</p><p>Article snippet goes here and it can get to be very long. Lorem ipsum dolor sit amet. Blah blah more text here.</p></div>
</li>
</ul>
JS:
$("ul, li").disableSelection();
$('#selections').nestedSortable({
listType: 'ul',
toleranceElement: 'div',
items: 'li',
tolerance:"pointer",
});
$('#content').nestedSortable({
listType : "ul",
handle:"div",
toleranceElement:"div",
helper:'clone',
items: 'li',
connectWith:'#selections',
});
我能夠從內容的拖動回到SELECTIONS的最高級別,但試圖拖入嵌套位置並不真正起作用。如果一直拖到右邊幾乎離開頁面,它有時會起作用。