Skip to content

Instantly share code, notes, and snippets.

@svenfuchs
Created October 4, 2008 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svenfuchs/14807 to your computer and use it in GitHub Desktop.
Save svenfuchs/14807 to your computer and use it in GitHub Desktop.
// 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);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment