Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active March 30, 2023 19:16
Show Gist options
  • Save fayqLs/1004e07a2f35b8aaa2ca632bc7d7b0b3 to your computer and use it in GitHub Desktop.
Save fayqLs/1004e07a2f35b8aaa2ca632bc7d7b0b3 to your computer and use it in GitHub Desktop.
ABRIR PDF NA JANELA MODAL
<?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