Right fixed columns should also have DTFC_RightBodyLiner > thead > tr height to 0px
Right fixed columns should also have DTFC_RightBodyLiner > thead > tr height to 0px
Rilcy
Posts: 1Questions: 1Answers: 0
I use left and right fixed columns and i see that CSS for FixedColumn was incomplete.
In "fixedColumns.bootstrap5.css" file, the following CSS :
div.dataTables_scrollBody thead tr,
div.DTFC_LeftBodyLiner thead tr {
height: 0px !important;
}
Should be update to :
div.dataTables_scrollBody thead tr,
div.DTFC_LeftBodyLiner thead tr,
**div.DTFC_RightBodyLiner thead tr** {
height: 0px !important;
}
If you don't do this, you have a disalignment with your right fixed table.
Best regard.
Edited by Colin - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.
This discussion has been closed.
Answers
Agreed! Fix committed.
Many thanks for flagging this up.
Allan