I am using DataTables along with the rowReorder plugin against a static table (non AJAX) - everything initialises fine but when I drag a row, whilst it moves within the tabl
Try adding an ID or sequence to the table. In the basic initialization example, it says:
The first column in the table is a sequence number that provides the basis for the ordering.
In that example it has a hidden sequence column:
columnDefs: [ { targets: 0, visible: false } ]