Export Data Pdf Line Break dont work

Export Data Pdf Line Break dont work

hakkidilekhakkidilek Posts: 2Questions: 2Answers: 0
edited July 2018 in Free community support

Hello to everyone,

What I want to do is work on the <br> tags in the data I print in the footer area.

PDF export data below

{
extend: 'pdf',
text: 'PDF',
filename: 'Iade_Liste',
orientation: 'landscape',
pageSize: 'A4',
footer: true,
exportOptions: {
stripNewlines:true,
stripHtml:true,
columns: ':visible'
}
},

my footer data

$( $this.api().column( 10 ).footer()).empty();
_.each(oIT, function(v, i){
var txt = "<span style='display:block; font-size:14px;'>" + v + "</span> <br>";
$( $this.api().column( 10 ).footer()).append(txt);
});

How can do it

This discussion has been closed.