How to not print or export tfoot or thead row

How to not print or export tfoot or thead row

PascalPascal Posts: 2Questions: 2Answers: 0

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

Answers

  • ranblayranblay Posts: 3Questions: 1Answers: 0

    Did you solve? I have the same issue (

  • weiliankweiliank Posts: 1Questions: 0Answers: 1
    edited November 2014 Answer ✓

    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
                        }
                    ]
                }
    })
    } );
    
This discussion has been closed.