この投稿を試してください、それはあなたと同じ問題を抱えています:
ソート可能なグリッドでconnectWithを使用すると、JQueryのソート可能なブレークが発生します
nick_wjquery.ui.sortable.js
は、 734行目のコードを置き換えることをお勧めします
// move the item into the container if it's not there already
if(this.containers.length === 1) {
this.containers[innermostIndex]._trigger("over", event, this._uiHash(this));
this.containers[innermostIndex].containerCache.over = 1;
} else { ...
と
// move the item into the container if it's not there already
if(this.containers.length === 1) {
this.containers[innermostIndex]._trigger("over", event, this._uiHash(this));
this.containers[innermostIndex].containerCache.over = 1;
} else if(this.currentContainer != this.containers[innermostIndex]) { ...
編集:古いバージョンのjQuery UIで動作するようにjsfiddleを変更しましたが、正常に動作しています。これで問題が解決するはずです。
http://jsfiddle.net/fjjqM/6/