Row reorder doesn't work with column ordering

Row reorder doesn't work with column ordering

tejasghutukadetejasghutukade Posts: 2Questions: 1Answers: 0

I have to order a column and the change the order of the columns by dragging a row one by one and placing them . But after ordering the table by a column the row order doesnt work. whenever i drag row to its new position and drop it it goes back to it's old position.
Following is my datatable Init code

var tableOpts = {
        paging: false,
        deferRender: true,
        searching: false,
        scrollCollapse: true,
         scrollY: 1000,
        rowReorder: true,
        data: array,
};

$('#table').DataTable(tableOpts );

Is there something wrong with the initialization or it's a bug?

Answers

This discussion has been closed.