proper use of scrollX and scrollY

proper use of scrollX and scrollY

beebekbeebek Posts: 20Questions: 1Answers: 0
edited September 2013 in Bug reports
I have a huge table with many rows (exceeding the browser page), and many columns(around 40).
I am also using colVis and multi select feature as well. All working fine.
But while including the "sScrollX' and "sScrollY', and using the colVis to deselect some columns, the multirows dropdown gets disappear.

I am simply using them as
"sScrollY" : 100,
"sScrollX" : "1000%",

Replies

  • jhcomputejhcompute Posts: 26Questions: 0Answers: 0
    Hello,

    Try using this.

    $(document).ready(function() {
    $('#example').dataTable( {
    "sScrollY": 200,
    "sScrollX": "100%",
    "sScrollXInner": "110%"
    } );
    } );

    or for the additional columns use this feature.

    http://datatables.net/release-datatables/examples/server_side/row_details.html

    I like to use this for showing the additional columns.

    Cheers...
  • allanallan Posts: 61,652Questions: 1Answers: 10,094 Site admin
    sScrollX should only ever be set to 100% - never anything else unless you understand it extremely well (I don't use anything other than 100%!). I'm going to add that to the documentation.

    Also don't use sScrollXInner - I was wrong putting that in at all and I'm thinking of removing it. The 1.10 examples certainly will not use it.

    If you are having problems with scrolling, please link to a test case as noted in the forum rules.

    Allan
This discussion has been closed.