FixedColumns with scroller

FixedColumns with scroller

78fede7878fede78 Posts: 2Questions: 1Answers: 0

It does not work, only the fixed header.
you can set a column of a datable with the active scroller?

Answers

  • ajoslin103ajoslin103 Posts: 20Questions: 4Answers: 0

    I am using these settings to get the 1st two columns fixed and the rest scrolling ok

            paging: false,
            scrollY: 400,
            scrollX: true,
            fixedColumns: {
                leftColumns: 2
            },
    
  • 78fede7878fede78 Posts: 2Questions: 1Answers: 0
    edited July 2016

    It does not work, the problem is on the https://cdn.datatables.net/scroller/1.4.2/css/scroller.dataTables.min.css style sheet that makes the conflict and does not fix the column correctly.

    Why these bugs are not tested properly?
    Here is my example:
    https://jsfiddle.net/65jLxjm2/5/

  • UrsoUrso Posts: 1Questions: 1Answers: 0

    Are there any known plans on fixing that compatibility problem?

  • allanallan Posts: 63,819Questions: 1Answers: 10,517 Site admin

    Long term yes, it is something I plan to address. However it isn't something I have the bandwidth to fix in the short term I'm afraid.

    Allan

  • sambufalosambufalo Posts: 1Questions: 0Answers: 0
    edited November 2016

    I was facing this same problem. I have work around it just by adding the CSS class:

    .DTFC_LeftBodyWrapper {
        z-index: 999999999 !important;
    }
    

    It's also important to set a 'background-color' in the header, so the original table header will not overlay the cloned table header created by fixedheader plugin.

    Samuel.

This discussion has been closed.