| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| server-side-processing.html | 2015-06-25 | 7.7 kB | |
| size_fixed.html | 2015-06-25 | 21.9 kB | |
| size_fluid.html | 2015-06-25 | 21.9 kB | |
| two_columns.html | 2015-06-25 | 21.2 kB | |
| index_column.html | 2015-06-25 | 23.8 kB | |
| right_column.html | 2015-06-25 | 21.4 kB | |
| rowspan.html | 2015-06-25 | 18.4 kB | |
| simple.html | 2015-06-25 | 21.8 kB | |
| css_size.html | 2015-06-25 | 22.3 kB | |
| left_right_columns.html | 2015-06-25 | 21.4 kB | |
| bootstrap.html | 2015-06-25 | 22.2 kB | |
| col_filter.html | 2015-06-25 | 22.6 kB | |
| colvis.html | 2015-06-25 | 22.5 kB | |
| index.html | 2015-06-25 | 3.6 kB | |
| Totals: 14 Items | 272.5 kB | 0 | |
# FixedColumns
When making use of DataTables' x-axis scrolling feature (`scrollX`), you may wish to fix the left or right most columns in place. This plug-in for DataTables provides exactly this option (for non-scrolling tables, please use the FixedHeader plug-in, which can fix headers, footers and columns). Key features include:
* Freezes the left most column to the side of the table
* Option to freeze two or more columns
* Full integration with DataTables' scrolling options
# Installation
To use FixedColumns, first download DataTables ( http://datatables.net/download ) and place the unzipped FixedColumns package into a `extensions` directory in the DataTables package. This will allow the pages in the examples to operate correctly. To see the examples running, open the `examples` directory in your web-browser.
# Basic usage
FixedColumns is initialised using the `$.fn.dataTable.FixedColumns()` constructor. For example:
```js
$(document).ready(function() {
var table = $('#example').DataTable( {
scrollY: "300px",
scrollX: true,
scrollCollapse: true,
paging: false
} );
new $.fn.dataTable.FixedColumns( table );
} );
```
# Documentation / support
* Documentation: http://datatables.net/extensions/FixedColumns/
* DataTables support forums: http://datatables.net/forums
# GitHub
If you fancy getting involved with the development of FixedColumns and help make it better, please refer to its GitHub repo: https://github.com/DataTables/FixedColumns