Specifying buttons of export
Specifying buttons of export
kin
Posts: 1Questions: 1Answers: 0
in TableTools
Hello,
Please I am using Datatable in a PHP project
Here is my table
var table =$('#example').DataTable( {
"dom" : 'T<"">lfrtip',
"tableTools": {
"aButtons": [
"copy",
"print",
{
"sExtends": "csv",
"sButtonText": "export",
oSelectorOpts: {
page: 'current'
}
}
],
"sSwfPath": "/DataTables-1.10.0/swf/copy_csv_xls_pdf.swf"
}
} );
I want to make this buttons inserted in the top like this example
var tt = new $.fn.dataTable.TableTools( table );
$( tt.fnContainer() ).insertBefore('div.dataTables_wrapper');
Please can you help me to specify the buttons to be displayed, I don't like all of them!
Thanks a lot for you help. I appreciate it!
This discussion has been closed.