Jquery Datatable theme Hide header/footer balk

后端 未结 8 2345
梦毁少年i
梦毁少年i 2021-02-10 06:54

I am trying to remove the header/footer balk of this table

Picture of what I am trying to remove: \"enter

8条回答
  •  独厮守ぢ
    2021-02-10 07:39

    Hide the pagination with:

     $(document).ready(function() {
      var oTable = $('#tableSmooth').dataTable({
          "bFilter": false, //Disable search function
          "bJQueryUI": true, //Enable smooth theme
          "sPaginationType": "full_numbers", //Enable smooth theme
          "bPaginate": false //hide pagination
      });
    });
    

    hope this helps!

提交回复
热议问题