FixedCloumns multiple tables with jquery tabs

FixedCloumns multiple tables with jquery tabs

lukejohnlukejohn Posts: 1Questions: 0Answers: 0
edited July 2011 in Plug-ins
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.
This discussion has been closed.