Making a column unsortable?

Making a column unsortable?

jstemperjstemper Posts: 15Questions: 10Answers: 0

How do I make a specific column unsortable? I have a grid with a link in the final column and I want to prevent sorting on that column.
My current startup call:

 $('#rollupTable').DataTable({
                "scrollX": true,
                "colReorder": true,               
                fixedColumns: {
                    leftColumns: 1
                    //rightColumns:1
                }
            });
This discussion has been closed.