0

我有一个我更新的表,但是当我更新它时

<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();

        }

更新后如何修复可排序?

4

1 回答 1

0

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

像这样:

<p:commandButton oncomplete="init();" id="someId" update="table" value="Button" action="#{gestionduplanning.exec2}" />
于 2013-06-04T10:16:48.233 回答