使用Mason时,jQuery UI Sortable无法正常工作。知道如何避免这种冲突吗?任何帮助将不胜感激。
答案 0 :(得分:1)
我想我有类似的问题。
我设法通过简单地在代码中调用砌体来设置可排序元素来修复它。 (可能有更好的方法,我不确定?)
$(function() {
$("#youritem").sortable({ opacity: 0.9, cursor: 'move', update: function() {
var order = $(this).sortable("serialize") + '&action=updateRecordsListings';
$.post("dosomething.php", order, function(theResponse){
//you can see that i've re-called masonry once the sortable object has been moved
$('#youritem').masonry({columnWidth: 200, itemSelector: 'youritem' });
});
}
});
});
希望这可以帮助你 - 如果还有其他方式我也想知道。
答案 1 :(得分:1)
我也有类似的问题,但后来我发现了一个有效的Masonry& Sortable& resizable例子:
http://tyler-designs.com/masonry-ui/
不完美,但这是一个很好的起点。