jQuery draggable table elements - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:50:21Zhttp://stackoverflow.com/feeds/question/307882http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307882/jquery-draggable-table-elements2jQuery draggable table elementscdleary2008-11-21T04:39:28Z2008-11-21T07:48:10Z
<p>jQuery's <code>draggable</code> functionality doesn't seem to work on tables (in FF3 or Safari). It's kind of difficult to envision how this <em>would</em> work, so it's not really surprising that it doesn't.</p>
<pre><code><html>
<style type='text/css'>
div.table { display: table; }
div.row { display: table-row; }
div.cell { display: table-cell; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://dev.jquery.com/view/tags/ui/latest/ui/ui.core.js"></script>
<script src="http://dev.jquery.com/view/tags/ui/latest/ui/ui.draggable.js"></script>
<script>
$(document).ready(function(){
$(".row").draggable();
});
</script>
<body>
<div class='table'>
<div class='row'>
<div class='cell'>Foo</div>
<div class='cell'>Bar</div>
</div>
<div class='row'>
<div class='cell'>Spam</div>
<div class='cell'>Eggs</div>
</div>
</div>
<table>
<tr class'row'><td>Foo</td><td>Bar</td></tr>
<tr class='row'><td>Spam</td><td>Eggs</td></tr>
</table>
</body>
</html>
</code></pre>
<p>I'm was wondering a) if there's any specific reason why this doesn't work (from a w3c/HTML spec perspective) and b) what the right way to go about getting draggable table rows is.</p>
<p>I like real tables because of the border collapsing and row height algorithm -- any alternative that can do those things would work fine.</p>
http://stackoverflow.com/questions/307882/jquery-draggable-table-elements/307926#3079263Answer by VonC for jQuery draggable table elementsVonC2008-11-21T05:08:32Z2008-11-21T05:19:45Z<p>If you have truly tabular data, you should stick with table indeed.</p>
<p>And if you want to drag rows <em>within</em> a table, this <strong><a href="http://www.isocra.com/2008/02/table-drag-and-drop-jquery-plugin/" rel="nofollow">JQuery + "draggable row table" library</a></strong> works perfectly in FireFox3</p>