如何修复Sortable在更新表后没有工作?

时间:2013-06-04 09:36:16

标签: jquery jsf

我有一张表,我更新但是当我用

更新它时
<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?

1 个答案:

答案 0 :(得分:0)

oncomplete="init();"添加到按钮

像这样:

<p:commandButton oncomplete="init();" id="someId" update="table" value="Button" action="#{gestionduplanning.exec2}" />