Help: how can I drop off some elements

Help: how can I drop off some elements

lgslgs Posts: 3Questions: 0Answers: 0
edited February 2012 in General
I just succesfully followed http://datatables.net/blog/Twitter_Bootstrap_2 tutorial. Now I've the Twitter Bootstrap 2 DataTables in place like the example (http://datatables.net/media/blog/bootstrap_2/) but I'd like to drop "records per page", "search", "Showing 1 to 10 of 57 entries" and "pagination" elements, having just the table.

How can I do that ?

Thanks in advance
Luca

Replies

  • lgslgs Posts: 3Questions: 0Answers: 0
    Ok, I get it

    $('#example').dataTable( {
    "bFilter": false, // Disable searching
    "bPaginate": false, // Disable pagination
    "bInfo": false // Disable info texts
    });
  • lgslgs Posts: 3Questions: 0Answers: 0
    ... thanks to Secator: http://stackoverflow.com/questions/9247891/how-can-i-drop-off-some-elements-from-datatables/9247913#9247913
This discussion has been closed.