Preciso exibir um anexo no modal em uma Widget.
Pela web funciona, mas quando tento ver o anexo pelo app, ele não é exibido.
Alguém consegue ajudar?
Parte do código:
var base64 = btoa(doc.output());
var pdfUrl = "data:application/pdf;base64," + base64;
var html = "<div id='divModalPDF'>"
html += " <iframe src='" + pdfUrl + "' width='100%' height='100%' />"
html += " </div>"
if (html) {
this.myModal = FLUIGC.modal({
title: 'Document',
content: html,
id: 'modalAFFSMobile',
size: 'full',
actions: [{
'label': 'Close',
'autoClose': true
}]
}, function (err, data) {
if (err) {
console.error(err)
} else {
$('#modalAFFSMobile').keyup(event => {
if (event.key == 'Escape') {
this.myModal.remove()
}
})
}
})
}