PDF Export problem with dropdown filter
PDF Export problem with dropdown filter
ancogenli
Posts: 2Questions: 0Answers: 0
I am using this method for dropdown filter in the table footer: http://www.datatables.net/examples/api/multi_filter_select.html
I also added PDF export option, it works fine but the PDF includes the table footer as the last record and show all text in these filters.
Is it possible to have this PDF export process the records in tbody element?
Thanks
I also added PDF export option, it works fine but the PDF includes the table footer as the last record and show all text in these filters.
Is it possible to have this PDF export process the records in tbody element?
Thanks
This discussion has been closed.
Replies
Open TableTools.js, find the line --> if ( oConfig.bFooter && dt.nTFoot !== null )
Change to if ( oConfig.bFooter && dt.nTFoot == null ), so it ignores footer with content.