FixedColumns - Problem with width and overlapping

FixedColumns - Problem with width and overlapping

danimoedanimoe Posts: 1Questions: 0Answers: 0
edited June 2012 in Plug-ins
Hello folks,

i have a problem with the fixedcolumns plugin.

the table didnt want to get the correct width =)
Search and Showing Panel have the correct width.
Heres a screenshot of the problem:

http://www.abload.de/img/unbenannthnyw2.png

The table is inside a jquery ui tab.
And here is the jquery initial code:
[code]$(document).ready(function() {
var oTable = $('table.admin').dataTable( {
/* Einbinden von Spaltensortierung */
"aaSorting": [[ 1, "asc" ]],
/* Show Entries Länge */
"bPaginate": false,
"sScrollX": "100%",
"sScrollXInner": "110%",
"bAutoWidth" : true,
"bScrollCollapse": false,
/* Spaltenlänge */
"aoColumns": [
{},
{ "iDataSort":2},
{"bSearchable": false, "bSortable": false, "bVisible": false},
{"sType": "date"},
{},
{},
{},
<?php
foreach ($customColumns as $colID) {
?>
{},
<?php
}
?>
{ "bSearchable": false, "bSortable": false}
],
"sDom": 'RC<"clear">lfrtip'
});
new FixedColumns( oTable, {
"iLeftColumns": 2,
"iLeftWidth": 200
// "iRightColumns": 1
//// "iRightWidth":100
});
});[/code]

Ill hope you can help me.
Thanks.
This discussion has been closed.