简体   繁体   中英

FixedHead in datatables doesn't work after removing pagination

When I delete the line “paginate”: false inside of the javascript box, the Fixedheader doesn't work anymore but I don't want pagination. Is there any way to avoid this?

Here's the code: http://jsfiddle.net/xF8hZ/128/

$(document).ready(function() {
var table = $('#example').DataTable( {
    "bSort": false
   "paginate": false
} );

new $.fn.dataTable.FixedHeader( table, { "left": true } );


 $('.filterName').on('click', function(e) {
    e.preventDefault();

    var filterValue = $(this).data('filter');

    table.column(0).data().search(filterValue).draw();
});

} );

I assume you meant to say

When I put the line “paginate”: false inside of the javascript box...

That's because you missed a comma there, should look like this:

$(document).ready(function() {
var table = $('#example').DataTable( {
    "bSort": false,
   "paginate": false
} );

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