≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Cell background color for fixed column cells
Cell background color for fixed column cells
schuck9
Posts: 2
Questions: 0
Answers: 0
January 2013
edited January 2013
in
General
I cannot seem to figure out how to change the background color for the cells that are under fixed columns. Before I used the FixedColumns plugin I used the row callback from the data table to do the job. Any ideas?
Replies
allan
Posts: 65,846
Questions: 1
Answers: 10,956
Site admin
January 2013
Use some CSS like that in the CSS file that comes with FixedColumns:
[code]
/* Block out what is behind the fixed column's header and footer */
table.DTFC_Cloned thead,
table.DTFC_Cloned tfoot {
background-color: white;
}
/* Block out the gap above the scrollbar on the right, when there is a fixed
* right column
*/
div.DTFC_Blocker {
background-color: white;
}
[/code]
Allan
This discussion has been closed.
Replies
[code]
/* Block out what is behind the fixed column's header and footer */
table.DTFC_Cloned thead,
table.DTFC_Cloned tfoot {
background-color: white;
}
/* Block out the gap above the scrollbar on the right, when there is a fixed
* right column
*/
div.DTFC_Blocker {
background-color: white;
}
[/code]
Allan