我正在使用sortable来排序不同宽度的x高度div和砌体来清理空白区域。如何将被排序的div的类传递给占位符,使它们的大小相同?
这些方框有单单,双单等类......以确定大小。
问题是没有传递类。 Sortable在不识别占位符选项时添加了类,但它将可见性设置为隐藏。
//The extra ajax stuff is to save the sort order to WordPress menu order.
$(document).ready(function() {
$('#edit').click(function() {
var itemList = $('.sortable');
itemList.sortable({
start: function(event, ui) {
var plus = ui.item.hasClass('double-single') ? 'double-single' : 'single-single';
var placeholder =
itemList.sortable("option", "placeholder", 'placeholder ' + plus );
},
update: function(event, ui) {
$('#loading-animation').show(); // Show the animate loading gif while waiting
opts = {
url: MyAjax.ajaxurl,
// ajaxurl is defined by WordPress and points to /wp-admin/admin-ajax.php
type: 'POST',
async: true,
cache: false,
dataType: 'json',
data: {
action: 'item_sort',
// Tell WordPress how to handle this ajax request
order: itemList.sortable('toArray').toString() // Passes ID's of list items in 1,3,2 format
},
success: function(response) {
$('#loading-animation').hide(); // Hide the loading animation
return;
},
error: function(xhr, textStatus, e) { // This can be expanded to provide more information
alert(e);
// alert('There was an error saving the updates');
$('#loading-animation').hide(); // Hide the loading animation
return;
}
};
$.ajax(opts);
}
});
});
$('.sortable').disableSelection();
});
$(function() {
$('#sort').click(function() {
$('#sortable1').masonry({
columnWidth: 325,
itemSelector: '.ui-state-default'
});
});
});
答案 0 :(得分:4)
您无法在初始化可排序的事件时触发的create事件中执行此操作。相反,您可以设置placeholder:'placeholder'
,并使用start
事件向ui.placeholder
添加额外的类,以使其适当大小:
itemList.sortable({
placeholder: 'placeholder',
start: function(event, ui) {
var plus;
if(ui.item.hasClass('single-single')) plus = 'single-single'; else
if(ui.item.hasClass('single-double')) plus = 'single-double'; else
if(ui.item.hasClass('single-triple')) plus = 'single-triple'; else
if(ui.item.hasClass('double-single')) plus = 'double-single'; else
if(ui.item.hasClass('double-double')) plus = 'double-double'; else
if(ui.item.hasClass('double-triple')) plus = 'double-triple'; else
plus = 'single-single';
ui.placeholder.addClass(plus);
}});
你可能想要实现更复杂的类检测方法,它只是一个快速的复制粘贴,所以我可以测试它。