Hi, I have a problem when I try to export data after applying a filter. I read a discussion suggesting to use oSelectorOpts but it's not working for me. This is the code I use to initialise the table: $(document).ready( function () { $('#example').dataTable( { "sDom": 'T<"clear">lfrtip', "tableTools": { "sSwfPath": "./swf/copy_csv_xls_pdf.swf" }, "oTableTools": { "aButtons": [ { "sExtends": "copy", "oSelectorOpts": { filter : "applied" } } ] } } ); } );
Do you have any idea why it's not working?
thanks