-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.html
More file actions
18 lines (16 loc) · 776 Bytes
/
home.html
File metadata and controls
18 lines (16 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<select name="exportFormat" (change)="onChange($event)">
<option>PDF</option>
<option>DOCX</option>
<option>XLS</option>
<option>XLSX</option>
<option>RTF</option>
<option>MHT</option>
<option>HTML</option>
<option>TXT</option>
<option>CSV</option>
<option>PNG</option>
</select>
<button style="margin:5px" (click)="downloadFile()">Export a report</button>
<button style="margin:5px" (click)="printInNewWindow('api/Home/Print')">Print a report in a new tab</button>
<button style="margin:5px" (click)="printWithIFrame('api/Home/Print')">Print a report with IFrame</button>
<iframe id="printFrame" name="printFrameName" #printFrame [src]="printUrl" frameborder="0" width="1" height="1" style="position: absolute; top:-100px;"></iframe>