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});