Notifications
Clear all
Topic starter
02/08/2023 12:02 pm
How can I build a pipeline for Imagium project on azure devops and display the reports and snapshorts
11/08/2023 5:39 am
Displaying pipeline reports with Imagium is very simple. Out of many ways, the one that can be very straight forward is to embed the report iframe in your existing reports or a custom report.
Steps for custom template:
- Place the html template in your root format (See the sample below)
- Update the UID at runtime in the template (Use any programming language to do this)
- Attach the the updated html file as required
Sample Template
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Full Page Iframe</title> <style> body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; /* This will hide scrollbars */ } iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; /* Remove the default iframe border */ } </style> </head> <body> <iframe src="http://192.168.2.13:90/Report.aspx?uid=756ef0a6-2718-4871-beea-d70c1fb02c7e" title="Full Page Iframe"></iframe> </body> </html>
This post was modified 1 year ago 2 times by admin