Is there a way to not print or export tfoot or thead row having filtering input or select ?
This question has an accepted answers - jump to answer
Did you solve? I have the same issue (
try add "bFooter": false in your tableTools.
$(document).ready( function () { $('#example').DataTable({ tableTools: { "sSwfPath": "/assets/datatable/swf/copy_csv_xls_pdf.swf", "aButtons": [ { "sExtends": "csv", //extension file type "sTitle": "Excel_Reporting", //saved file name "bFooter": false //the one you looking for } ] } }) } );
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
Did you solve? I have the same issue (
try add "bFooter": false in your tableTools.