cfreak, I know there was a plugin to to that at one point but could not find
it, I would suggest something like set each row with the id of the record
and after sorting it, and before you insert into db get the new order of id
by doing something like:

var myarray = Array();
$('tr').each(function(){
myarray.push($(this).attr('id'););
});

You will have to make it so you can pass the array thru ajax, but that
should be simple.

Hope this points you in the right direction.

--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com

Reply via email to