how to remove pagination in datatable

datatables, html, jquery, pagination

Solution

You should include `"bPaginate": false,` into the configuration object you pass to your constructor parameters. As seen here: http://datatables.net/release-datatables/examples/basic_init/filter_only.html

Problem

I have used Datatables in grid but need not pagination. There is a list of orders in one page and I show them in a Datatable grid but in bottom I do not want to show pagination. Is there any way to remove or hide pagination from the data table by using a bit customization on the jQuery library. I tried to customize it but I found very few methods to do it..

Original source