看来我可以并且需要自己修改 Selectable 来做到这一点。
我找到了 Nicolas Rudas(?)的这个例子:http: //nicolas.rudas.info/jquery/selectables_sortables/
$(function() {
$("#selectable")
.selectable({
autoRefresh: false,
stop: function(e,ui){
$(this).selectable( 'refresh');
},
noConflict : false
})
.sortable({
opacity:'0.5',
cursor: 'move',
zIndex: 5,
helper : 'clone',
forcePlaceholderSize : true,
stop : function(){
$("#selectable").selectable( 'refresh');
}
})
$('#noConflict').toggle(function() {
$(this).text('Disable \'noCoflict\'');
$("#selectable").selectable('option','noConflict',true).selectable( 'refresh');
},
function() {
$(this).text('Enable \'noCoflict\'');
$("#selectable").selectable('option','noConflict',false).selectable( 'refresh');
});
});
他展示了他如何启用我们正在寻找的功能。他还描述了一些他也解决的问题。我现在将自己更彻底地研究他的代码。
因此,我要结束这个问题。