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:
and initializing DataTables with:
When I use FixedColumns feature, only columns within first table get "fixed"
Do I have to initialize each table and setting FixedColumns seperately?
DataTables debugger:
http://debug.datatables.net/ipotur
Thanks
Martin
me and DataTables are slowly getting to know each other... and at this point I got stuck with FixedColumns functionality. I have multiple tables:
<div class="monthSummary"> <table class="FixedTables" id=*uniqueID*> </table> </div> <div class="monthSummary"> <table class="FixedTables" id=*uniqueID*> </table> </div> ...
and initializing DataTables with:
var oTable = $('.FixedTables').dataTable({ "bPaginate": false, "bInfo": false, "bAutoWidth": false, "bFilter": false, "sScrollY": "100%", "sScrollX": "100%", "sScrollXInner": "150%", "bScrollCollapse": true });
When I use FixedColumns feature, only columns within first table get "fixed"
new FixedColumns( oTable, { "iLeftColumns": 2 });
Do I have to initialize each table and setting FixedColumns seperately?
DataTables debugger:
http://debug.datatables.net/ipotur
Thanks
Martin