I use angular 5 and angular-datatable.
I want to apply "btn btn-success" class on custom button
This is what I tried :
this.dtOptions = {
...
buttons: [
{
text: 'Sélection',
className: 'btn btn-success',
...
}
]
}
The class is added but it keeps 'dt-button' class before that overrides some attributes as you can see on image
But I don't find how to remove it...
How can I solve it ?

