datatable setup

Solutions on MaxInterview for datatable setup by the best coders in the world

showing results for - "datatable setup"
Barnaby
07 Sep 2018
1$('table').dataTable({
2	lengthChange: false, //visable show {row} entries
3	info : false, // hide showing entries bottom
4    pagingType: "first_last_numbers", // showing bottom number
5    searching: false, //hide search
6    aLengthMenu: [[5, 10, 25, -1], [5, 10, 25, "All"]], // set show {row} entries
7	iDisplayLength: 5 // num of rows
8});