我有一张表,我更新但是当我用
更新它时<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();
}
如何在更新后修复sortable?
答案 0 :(得分:0)
将oncomplete="init();"
添加到按钮
像这样:
<p:commandButton oncomplete="init();" id="someId" update="table" value="Button" action="#{gestionduplanning.exec2}" />