How can I hide bootstrap datatables(records per page)!
How can I hide bootstrap datatables(records per page)!
Kowts
Posts: 2Questions: 1Answers: 0
I'm using jQuery DataTables. I already remove the footer (showing how many rows there are visible), want to remove one "object" (records per page) that is added to the table by default.
$(document).ready(function () {
$('#example').dataTable({
bInfo: false
});
});
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
add lengthChange:false to its construction args(where binfo is)
thanks bro... it works :)