Cell background color for fixed column cells

Cell background color for fixed column cells

schuck9schuck9 Posts: 2Questions: 0Answers: 0
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

  • allanallan Posts: 63,523Questions: 1Answers: 10,473 Site admin
    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.