3

I'm following the examples to use FixedColumns.

var oTable4 = $('#example').dataTable( {
            "sScrollY": "300px",
            "sScrollX": "100%",
            "sScrollXInner": "150%",
            "bScrollCollapse": true,
            "bPaginate": false
        } );
        new FixedColumns( oTable4 );

I get the following error which means I've made some error initializing it...

Uncaught ReferenceError: FixedColumns is not defined 

Is FixedColumn a seperate plugin?

I'm using jQuery 1.9.1.

4

1 回答 1

3

FixedColumns is listed as plugin on their download page .

So depending if you have a full featured build or not you would need to load the js file for FixedColumns separate (is included in the extras director of the dataTables zip file)

于 2013-06-11T20:05:03.880 回答