After writing the table HTML into the iframe:
var report = document.getElementById('idReportView--idReportTable-listUl').outerHTML;
iframe.document.write(head, '<body class="sapUiBody">', report ,'</body>');
I use this js in my app to print a table:
var iframe = window.frames["idPrintReprot"];
iframe.focus();
iframe.print();
the js .print() is working in chrome browser in desktop and safari browser in iPad, but it is not working in the ( SAP Fiori Client ios App ).
How can I make the ( SAP Fiori Client ios App ) works like the iPad safari browser and run the js .print() ?
