fixedHeader.footer
Since: FixedHeader 3.0.0
Enable / disable fixed footer.
Please note - this property requires the FixedHeader extension for DataTables.
Description
This parameter simply provides the ability to enable or disable the fixed footer aspect of the FixedHeader extension. When enabled the table's footer will be sticky, so it will always be visible while the end user scrolls through a DataTables.
Type
Default
- Value:
false
Example
Disable the header, but enable footer:
new DataTable('#myTable', {
fixedHeader: {
header: false,
footer: true
}
});