Button img
Button img

Hello, I would like to put an img instead of (className: 'fa fa-cog fa-x')
{
extend: 'collection',
autoClose: 'true',
text: ' ',
tag: 'span',
className: 'fa fa-cog fa-x',
buttons: [ 'copy', 'csv', 'print', 'excel', 'pdf']
},
This does not work
{
extend: 'collection',
autoClose: 'true',
text: '<img src="test.png">',
tag: 'span',
buttons: [ 'copy', 'csv', 'print', 'excel', 'pdf']
},
This does not work
{
extend: 'collection',
autoClose: 'true',
tag: 'img',
attr: {
src: '<img src="test.png">'
},
buttons: [ 'copy', 'csv', 'print', 'excel', 'pdf']
},
How should I write?
/P
Answers
This thread should help, it's asking the same thing.
Cheers,
Colin