我有一个我更新的表,但是当我更新它时
<p:commandButton id="someId" update="table" value="Button" action="#{gestionduplanning.exec2}" />
但是我的 jquery 可排序代码在更新后不起作用。
$( init );
function init() {
$(".list-items").sortable({
connectWith: '.list-items',
items: "li:not(.item.new)",
placeholder: 'place-holder',
scroll: false,
tolerance: "pointer",update: function (event, ui) {
//alert($(this));
},
receive : function(e, ui) {
}
}).disableSelection();
}
更新后如何修复可排序?