rowReorder with fixedColumns
rowReorder with fixedColumns
matthe1
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.
This discussion has been closed.
Replies
According to the compatibility table they are not supported together:
https://datatables.net/download/compatibility
Kevin
Very helpful reference, thanks!
Would anybody have any thoughts on how I may go about creating a means for these to work together?