Button img

Button img

Per77Per77 Posts: 16Questions: 7Answers: 0

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

  • colincolin Posts: 15,237Questions: 1Answers: 2,598

    This thread should help, it's asking the same thing.

    Cheers,

    Colin

This discussion has been closed.