Hello,
I have an old code that works perfectly until today.
i use html5 reporting viewer to display the report.
when user click on print button - the chrome print dialog should be display, but in chrom 77 it's doesn't work.
I try debbuging the code, it seems that work and not failed but nothing happend:
function printDesktop(src) {
if (!iframe) {
iframe = document.createElement("IFRAME");
iframe.style.display = "none";
}
iframe.src = src;
document.body.appendChild(iframe);
}
Thanks,
Sari