I'm trying to style datatable buttons with bootstrap styles, but it doesn't seem to work. I'm using the Amazing Theme
My buttons configuration is as follows:
"buttons" => [
"colvis",
[
"extend" => 'excelHtml5',
"className" => 'btn btn-primary',
"exportOptions" => [
"columns" => ':visible'
]
],
[
"extend" => 'pdfHtml5',
"className" => 'btn btn-primary',
"orientation" => "landscape",
"pageSize" => "A4",
"exportOptions" => [
"columns" => ':visible'
]
],
],