svenfuchs
10/4/2008 - 9:19 PM

gistfile1.js

// line 272 and following - seems to work for me, at least i can drag across multiple tbodys

if (movingDown && jQuery.tableDnD.dragObject != currentRow) {
  currentRow.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow.nextSibling);
} else if (! movingDown && jQuery.tableDnD.dragObject != currentRow) {
  currentRow.parentNode.insertBefore(jQuery.tableDnD.dragObject, currentRow);
}