How can I hide bootstrap datatables(records per page)!

How can I hide bootstrap datatables(records per page)!

KowtsKowts Posts: 2Questions: 1Answers: 0
edited January 2015 in Free community support

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

Answers

  • ahrefahref Posts: 9Questions: 1Answers: 1
    Answer ✓

    add lengthChange:false to its construction args(where binfo is)

  • KowtsKowts Posts: 2Questions: 1Answers: 0

    thanks bro... it works :)

This discussion has been closed.