How to fix the Right-most Column
How to fix the Right-most Column
marlinjayakody
Posts: 1Questions: 1Answers: 0
In the examples of fixedColumns.js it shows the left most column fixed. I want to fix the Right most column fixed can some one help me?
Update got it working finally: $(document).ready( function () {
var table = $('#example').DataTable( {
"scrollX": "100%",
} );
new $.fn.dataTable.FixedColumns( table,{ "leftColumns": 0,"rightColumns": 1});
} );
This discussion has been closed.