, -, , .
CSV :
$("#dataTable").DataTable({
dom: 'Bfrtip',
buttons: [
{extend: 'csv',
text:'export to csv',
title:'1',
action: function(e, dt, button, config) {
config.title = "New title";
if ($.fn.dataTable.ext.buttons.csvHtml5.available( dt, config )) {
$.fn.dataTable.ext.buttons.csvHtml5.action(e, dt, button, config);
}
else {
$.fn.dataTable.ext.buttons.csvFlash.action(e, dt, button, config);
}
}}
]
})