FixedCloumns multiple tables with jquery tabs
FixedCloumns multiple tables with jquery tabs
I have tested the following code on a datatable without the FixedColumns plugin run on it, and it works fine with my pages set up
[code]
"show": function(event, ui) {
console.log(ui)
testobject = ui
var oTable = $('div.dataTables_scrollBody>table', ui.panel).dataTable();
if ( oTable.length > 0 ) {
oTable.fnAdjustColumnSizing();
}
}
[/code]
However once the FixedColumns plugin is run, it hides the table from view.
[code]
"show": function(event, ui) {
console.log(ui)
testobject = ui
var oTable = $('div.dataTables_scrollBody>table', ui.panel).dataTable();
if ( oTable.length > 0 ) {
oTable.fnAdjustColumnSizing();
}
}
[/code]
However once the FixedColumns plugin is run, it hides the table from view.
This discussion has been closed.