rowReorder with fixedColumns

rowReorder with fixedColumns

matthe1matthe1 Posts: 2Questions: 0Answers: 0

I'm looking to have my two left columns fixed using the "fixedColumns" feature while also allowing the user to drag and drop the rows into an order they prefer. Is this possible?

function createTable() {
var oTable = $('#dataTable table').DataTable({
rowReorder: true,
fixedColumns: {
leftColumns: 2
}
});

Both of these features work fine when i do them individually but together the drag-and-drop doesn't update the table after the mouseup.

Replies

This discussion has been closed.