how can i remove jquery datatable's exported excel's header(first row) . and may i align some columns header. my code is like this now..
buttons: [
{
extend: 'excelHtml5',
text: '<i aria-hidden="true"></i>Eksport',
footer: true,
className: 'btn btn-success my-5',
},
CodePudding user response:
Use the title: null
option in your buttons: [ { ... } ]
object. Setting the title to an empty string ''
also works.