Using fixed columns, when scrolling the left-side portion is now transparent. Using Jquery UI.

Using fixed columns, when scrolling the left-side portion is now transparent. Using Jquery UI.

Keith_HKeith_H Posts: 54Questions: 19Answers: 1

I have recently upgraded from datatables 1.10.18 to 1.11.5 and have encountered a problem with the fixed columns being transparent, so the scrolling table is now visible through the fixed table.

I don't know if I ma including all the required CSS files or if I have done the download incorrectly.

With the previous version I had CSS file jquery.dataTables_themeroller.css

The CSS files I use now are (as the above file is not in the latest download):
DataTables-1.11.5/css/dataTables.jqueryui.min.css
FixedColumns-4.0.2/css/fixedColumns.jqueryui.min.css

The relevant part of the table setup is:

        $('#table').DataTable({
              "autoWidth":false
            , "fixedColumns": {leftColumns: 6 }
            , "info":true
            , "JQueryUI":true
            , "order": [[ 6, "asc" ]]
            , "ordering":true
            , "paging":false
            , "scrollY":"680px"
            , "scrollCollapse":true
        });

Answers

Sign In or Register to comment.