FixedColumns has the ability to freeze columns on both the left and right hand sides of the table. By default it will fix the first column on the left, but using the initialisation parameters iLeftColumns and iRightColumns you can alter this to fix the columns on the right as well. This example shows a single column fixed in place, in this case the right most column.
Gecko | Firefox 1.0 | Win 98+ / OSX.2+ | 1.7 |
Gecko | Firefox 1.5 | Win 98+ / OSX.2+ | 1.8 |
Gecko | Firefox 2.0 | Win 98+ / OSX.2+ | 1.8 |
Gecko | Firefox 3.0 | Win 2k+ / OSX.3+ | 1.9 |
Gecko | Camino 1.0 | OSX.2+ | 1.8 |
Gecko | Camino 1.5 | OSX.3+ | 1.8 |
Gecko | Netscape 7.2 | Win 95+ / Mac OS 8.6-9.2 | 1.7 |
Gecko | Netscape Browser 8 | Win 98SE+ | 1.7 |
Gecko | Netscape Navigator 9 | Win 98+ / OSX.2+ | 1.8 |
Gecko | Mozilla 1.0 | Win 95+ / OSX.1+ | 1 |
$(document).ready( function () { var oTable = $('#example').dataTable( { "sScrollX": "100%", "sScrollXInner": "150%", "bScrollCollapse": true } ); new FixedColumns( oTable, { "iLeftColumns": 0, "iRightColumns": 1 } ); } );