No rows in table with fixed columns

No rows in table with fixed columns

GoloviorGolovior Posts: 10Questions: 3Answers: 0

"No data available in table" is hidden behind fixed columns, if there are to much fixed columns:
http://jsfiddle.net/anx79dtj/2/

Replies

  • allanallan Posts: 61,635Questions: 1Answers: 10,092 Site admin

    This little bit of CSS will work around it:

        table.dataTable.stripe tbody tr.DTFC_NoData {
          background-color: transparent;
        }
    

    http://jsfiddle.net/anx79dtj/4/

    Allan

  • GoloviorGolovior Posts: 10Questions: 3Answers: 0

    Aahhh, great. Thank you. Hadn't noticed the difference in class yet.

This discussion has been closed.