简体   繁体   中英

Jquery datatable PageLength does not do anything on select list change

I am using jquery datatable and when I change the number of rows from the dropdown list of datatable from 20 - 50. It does not show me the remaining rows.

I have tried changing different attributes but none of them worked for me.

$('#eventsTable').dataTable( {
    "aaSorting": [],
    "iDisplayLength": 20,
    "aLengthMenu": [[20, 50, -1], [20, 50, "All"]],

} );

Try given solution

$("#urTable").dataTables({ 
    "bJQueryUI":true, 
    "bSort":false, 
    "bPaginate":true,      
    "sPaginationType":"full_numbers", 
    "iDisplayLength": 10 
});

This worked for me

$('#myTable').dataTable( {
   "pageLength": 25,
   "lengthMenu": [ [10, 25, 50, -1], [10, 25, 50, "All"] ]
});

Working Demo

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM