Help: how can I drop off some elements
Help: how can I drop off some elements
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
How can I do that ?
Thanks in advance
Luca
This discussion has been closed.
Replies
$('#example').dataTable( {
"bFilter": false, // Disable searching
"bPaginate": false, // Disable pagination
"bInfo": false // Disable info texts
});