-
altClass
The specified class name will be added to odd rows (tr) for theming.
Code example:
$('selector').fixedHeaderTable({ altClass: 'className' });
-
autoShow
When autoShow is false the table will be hidden automatically when fixedHeaderTable is called. The table will remain hidden until .fixedHeaderTable('show') is called on it.
Code example:
$('selector').fixedHeaderTable({ autoShow: true });
-
cloneHeadToFoot
When cloneHeadToFoot is true the table header will be cloned and used as the table footer.
Code example:
$('selector').fixedHeaderTable({ cloneHeadToFoot: true });
-
fixedColumn version 1.3 only
When fixedColumn is true the first column will be fixed if the table scrolls horizontally.
Code example:
$('selector').fixedHeaderTable({ fixedColumn: true });
-
footer
When footer is true the TFOOT of the table will be used as a fixed footer. A TFOOT must be included in the table mark-up.
Code example:
$('selector').fixedHeaderTable({ footer: true });
-
height
When height is set the table thead, tbody, and optional tfoot will be equal to the height value. Height is in pixels.
Code example:
$('selector').fixedHeaderTable({ height: 500 });
-
width
When width is set the table width will be equal to the width value. Width is in pixels.
Code example:
$('selector').fixedHeaderTable({ width: 500 });
-
themeClass
The specified class name will be added to the table for theming.
Code example:
$('selector').fixedHeaderTable({ themeClass: 'className' });