使用 Masonry 时,jQuery UI Sortable 不起作用。知道如何避免这种冲突吗?任何帮助,将不胜感激。
问问题
3806 次
3 回答
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' });
});
}
});
});
希望这对您有所帮助-如果还有其他方法我也想知道。
于 2011-03-01T13:38:39.070 回答
1
使用gridster——它就像一个魅力,非常直观
于 2012-08-17T08:11:06.110 回答
1
我也有类似的问题,但后来我找到了一个工作 Masonry&Sortable&resizable 示例:
http://tyler-designs.com/masonry-ui/
不完美,但这是一个很好的起点。
于 2011-04-17T08:45:18.813 回答