-
-
Save fayqLs/1004e07a2f35b8aaa2ca632bc7d7b0b3 to your computer and use it in GitHub Desktop.
ABRIR PDF NA JANELA MODAL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$pdf = 'app/output/relatorio_clientes.pdf'; | |
$window = TWindow::create('PDF', 0.8, 0.8); | |
$iframe = new TElement('iframe'); | |
$iframe->src = $pdf; | |
$iframe->type = 'application/pdf'; | |
$iframe->style = "width: 100%; height:calc(100% - 10px)"; | |
$window->add($iframe); | |
$window->show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment