新しいレコードが追加された後にすべての行を置き換えるテーブルがあります-すべてはajax呼び出しを使用して行われるため、リロードは行われません。
コンテナ内でレコードが置き換えられると、tableDnDは新しいレコードでは機能しなくなるようです。ページを再度トリガーするには、ページをリロードする必要があります。
次のようにlivequery()プラグインを使用しようとしましたが、問題が解決しないようです(objはすべての行を含むtbodyオブジェクトです)。
sortRows : function(obj) {
"use strict";
obj.livequery(function() {
$.each($(this), function() {
var thisTbody = $(this);
var thisUrl = thisTbody.attr('data-url');
thisTbody.tableDnD({
onDragClass: "trActive",
onDrop: function(thisTable, thisRow) {
var thisArray = [];
var thisRows = thisTbody.find('tr');
$(thisRows).each(function() {
thisArray.push($(this).attr('id').split('-')[1]);
});
$(thisRows).promise().done(function() {
$.post(thisUrl, { items : thisArray }, 'json');
});
}
});
});
});
}