FixedColumns in Multiple Tables

FixedColumns in Multiple Tables

fahifahi Posts: 1Questions: 0Answers: 0
edited January 2013 in General
Hi,

me and DataTables are slowly getting to know each other... and at this point I got stuck with FixedColumns functionality. I have multiple tables: [code]








...
[/code]

and initializing DataTables with:
[code]
var oTable = $('.FixedTables').dataTable({
"bPaginate": false,
"bInfo": false,
"bAutoWidth": false,
"bFilter": false,

"sScrollY": "100%",
"sScrollX": "100%",
"sScrollXInner": "150%",
"bScrollCollapse": true
});
[/code]

When I use FixedColumns feature, only columns within first table get "fixed"
[code]
new FixedColumns( oTable, {
"iLeftColumns": 2
});
[/code]

Do I have to initialize each table and setting FixedColumns seperately?

DataTables debugger:
http://debug.datatables.net/ipotur

Thanks
Martin
This discussion has been closed.