Drag and Drop table rows between tables with JQuery UI

I needed to create a web page that let the user assign one item of a grid to a target by dragging the item and dropping it on a row on a different grid. I immediately thought about using JQuery UI draggables and droppables but it didn’t work as expected.
After looking for a solution for some time I finally came to this post by David Petersen explaining how to provide a helper element to JQuery to wrap the floating row while dragging and it worked perfectly.

source.draggable({ helper: function(event) { return $('

') .find('table').append($(event.target).closest('tr').clone()).end(); }, appendTo: 'body' });

To prevent a table from accepting its own rows I used the accept option on the droppable function.

accept: source.selector

The result:

$(function(){ setupDragDrop($('#t1 tr'), $('#t2 tr')); setupDragDrop($('#t2 tr'), $('#t1 tr')); });

function setupDragDrop(source, target) { source.draggable({ helper: function(event) { return $('

') .find('table').append($(event.target).closest('tr').clone()).end(); }, appendTo: 'body' });

target.droppable({
    drop: function(event, ui) {
        alert('row dropped ' + $(this).text());
    },
    accept: source.selector
});

} ​

Working sample a jsbin.

Technorati Tags: JQuery,JQuery UI,Javascript

This article is part of the GWB Archives. Original Author: Ariel Popovsky

New on Geeks with Blogs

  • We Won The One Award I Actually Care About

    Full Scale made the Inc. 5000 for the fifth year straight, the 12th listing across my three companies. Here is why the one award you cannot buy is worth stopping for.

  • Your Customers Build the Features Now

    I let a tool I liked sit dead for a year rather than build the features I wanted. An MCP server meant I never had to, and your customers can do the same to your product.

  • Get the Size of a Directory in Linux the Easy Way

    du -sh for the quick answer, ncdu for the cleanup, df for the disk itself: every command for checking directory size in Linux, plus why du and df never agree.

  • Vim Search and Replace: The Ultimate Guide

    One :%s command replaces every match in a file before a find dialog would even open. The Vim substitute patterns worth the muscle memory: flags, ranges, capture groups, and multi-file edits.