ludo / jquery-treetable

jQuery plugin to show a tree structure in a table
http://ludo.cubicphuse.nl/jquery-treetable
GNU General Public License v2.0
741 stars 278 forks source link

Solution for 'Calling sortBranch method make rows disappear' #189

Open SzaboMate90 opened 8 years ago

SzaboMate90 commented 8 years ago

Solution: jquery.treetable.js -> 403. row

Replace the following line:

node.row.insertAfter(destination.row); node.render();

to

if (!node.row.is(destination.row)) { node.row.insertAfter(destination.row); node.render(); }