- Patch #758514 by fago: second tabledrag table on a page sets wrong parent ids.

merge-requests/26/head
Dries Buytaert 2010-03-31 19:22:00 +00:00
parent fa63e6fe68
commit 759c2955c3
1 changed files with 1 additions and 1 deletions

View File

@ -640,7 +640,7 @@ Drupal.tableDrag.prototype.updateField = function (changedRow, group) {
// Use the first row in the table as source, because it's guaranteed to
// be at the root level. Find the first item, then compare this row
// against it as a sibling.
sourceRow = $('tr.draggable:first').get(0);
sourceRow = $(this.table).find('tr.draggable:first').get(0);
if (sourceRow == this.rowObject.element) {
sourceRow = $(this.rowObject.group[this.rowObject.group.length - 1]).next('tr.draggable').get(0);
}