Change the default number of rows to display on on

2019-01-22 18:43发布

How can I specify the number of rows to display on a single "page" when using DataTables's pagination feature?

标签: datatables
5条回答
我想做一个坏孩纸
2楼-- · 2019-01-22 18:49

using version 1.11 - use the attribute 'data-show'.

查看更多
对你真心纯属浪费
3楼-- · 2019-01-22 18:53

for 10 records

$('#datatable').DataTable({"pageLength": 10});

for 50 records

$('#datatable').DataTable({"pageLength": 50});

for all records

$('#datatable').DataTable({"pageLength": -1});
查看更多
萌系小妹纸
4楼-- · 2019-01-22 18:54

For DataTables version 1.10.5 and newer, as documented on the blog post announcing the integration of HTML5 data-* attributes, the number of rows to show per page can be specified via the source (HTML) table through the data-page-length attribute:

<table data-page-length='25'>
     ...
</table>

For DataTables version 1.10 and newer, as documented at Reference > Options > pageLength, the number of rows to show per page can be specified via the pageLength attribute:

$('#example').dataTable( {
    "pageLength": 50
});

For DataTables older than version 1.10, as documented at DataTables > Usage > Options > iDisplayLength, the number of rows to show per page can be specified via the iDisplayLength attribute:

$('#example').dataTable( {
    "iDisplayLength": 50
});

My two cents: use the data-* approach. It allows you to construct one dataTable call (that you can use throughout your app) while providing the option to configure how each individual table behaves:

<!-- table with embedded custom configurations -->
<table class="apply_dataTable" data-page-length='25'>
     ...
</table>

<!-- table with different embedded custom configurations -->
<table class="apply_dataTable" data-page-length='50' data-order='[[2, "desc"]]'>
     ...
</table>

<!-- one JavaScript call enhances both tables above -->
<script>
    $('table.apply_dataTable').dataTable(); //one invocation of datatables treats each table they way it wants to be
</script>
查看更多
趁早两清
5楼-- · 2019-01-22 19:11

We can set attribute using jquery and add up in a common file.

$('.dataTablegrid').attr('data-page-length',50);

This will apply for all the datatables across the project

查看更多
霸刀☆藐视天下
6楼-- · 2019-01-22 19:14

Using lengthMenu may help too:

$(document).ready(function() {
$('#example').DataTable( {
    "lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]]
} );

} );

https://datatables.net/examples/advanced_init/length_menu.html

查看更多
登录 后发表回答