Search code examples
jquerydatatable

How to disable vertical scrolbar in DataTable?


I did googling and read the Datatable documentation but could not able to disable the auto vertical scrolbar in DataTable. please let me know how to disable it?

$('#myTable').DataTable({
       "searching": true,
       "paging":   true,
       "ordering": true,
       "info":     true,


       "language": {
          "url": url,
          "searchPlaceholder": " ... "

      }

datatable screenshot


Solution

  • Try to set the scroll y to false.

    $('#myTable').DataTable({
           scrollY:        false,
           scrollX:        false,
           "searching": true,
           "paging":   true,
           "ordering": true,
           "info":     true,
    
    
           "language": {
              "url": url,
              "searchPlaceholder": " ... "
    
          }
    

    Try it with overflow:hidden in CSS.