How to fix the Right-most Column

How to fix the Right-most Column

marlinjayakodymarlinjayakody Posts: 1Questions: 1Answers: 0
edited May 2014 in Free community support

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.