Fixed Columns: unable to hide vertical scroll bar.

Fixed Columns: unable to hide vertical scroll bar.

GusBeareGusBeare Posts: 11Questions: 4Answers: 0

I can't seem to get rid of the vertical scroll bar when using FixedColumns. My init code is below.
I've tried scrollY: false but makes no diff. Otherwise the feature works great. Any suggestions?

.DataTable(
     {
         scrollX: true,
         fixedColumns: {
             start: 2
         },
         paging: false,
         order: [], // turns off default sorting which appears on first col
          columnDefs: [
             {
                 "orderable": true, // class leader is sortable
                 "targets": 5
             },
             {
                 "orderable": false, // all the other cols have no-sort class. Do not allow sorting
                 "targets": "no-sort"
             }]      
     });

Answers

  • allanallan Posts: 62,858Questions: 1Answers: 10,344 Site admin

    Can you link to a test case showing the issue please?

    Thanks,
    Allan

Sign In or Register to comment.