Я хочу получить свои таблицы данных, но при печати изображений они не отображаются. Кто-нибудь может помочь?
![Print result](https://i.stack.imgur.com/MAwpI.png)
У вас есть альтернатива или решение этой проблемы?
<script>
$(function () {
$('#tabeldata').DataTable({
dom: 'Bfrtip',
buttons: [
{
extend: 'print',
exportOptions: {
columns: 'th:not(:last-child)'
},
customize: function ( win ) {
$(win.document.body)
.css( 'font-size', '10pt' )
.prepend(
'<img src="http://datatables.net/media/images/logo-fade.png" style="position:absolute; top:0; left:0;" />'
);
$(win.document.body).find( 'table' )
.addClass( 'compact' )
.css( 'font-size', 'inherit' );
}
}
]
});
})
</script>