Exporting custom bricks visual as pdf
Hi,
I've created a carbon offset infographic using the blank custom brick which is embedded into our customer portal. I wish to allow our customer select the desired month and download the infographic as PDF in proper format (i.e., without month picker).
I used html2pdf module from cdnjs.cloudflare.com but encountered the following error upon clicking the export button: [Report Only] Refused to frame <censored> because an ancestor violates the following Content Security Policy directive: "frame-ancestors 'self' *.domo.com sensorflow-org.domo.com".
Anyone knows how do I resolve this issue?
Best Answers
-
Perhaps this might help..
<!DOCTYPE html> <html>
<head>
<title>PDF Generation Example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js"></script>
</head>
<body> <!-- Your infographic content here --> <div id="infographic">
<h1>My Carbon Offset Infographic</h1>
<p>This is where your infographic content goes.</p>
</div> <!-- Button to trigger PDF generation --> <button id="downloadPDF">Download PDF</button> <script>
document.getElementById('downloadPDF').addEventListener('click', function() {
// Create a new jsPDF instance
var doc = new jsPDF();
// Add your infographic content to the PDF
var infographicContent = document.getElementById('infographic').innerHTML;
doc.text(infographicContent, 10, 10);
// Save the PDF
doc.save('carbon_offset_infographic.pdf');
});
</script> </body>
</html>** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0 -
Also add the cloudflare url to your Custom Apps authorized domains. If you want it to be approved outside of the Domo domain.
** Was this post helpful? Click 💡/💖/👍/😊 below. **
** If it solved your problem. Accept it as a solution! ✔️ **
Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
Did I help you out? Feedback is priceless and will help me more than you know.Write a review!0
Answers
-
That appears to be a Content Security Policy issue….restricts the resources a web page can load based on domain policy. As if your frame (Domo portal) violates the security by attempting to frame another domain.
** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0 -
Perhaps this might help..
<!DOCTYPE html> <html>
<head>
<title>PDF Generation Example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.4.0/jspdf.umd.min.js"></script>
</head>
<body> <!-- Your infographic content here --> <div id="infographic">
<h1>My Carbon Offset Infographic</h1>
<p>This is where your infographic content goes.</p>
</div> <!-- Button to trigger PDF generation --> <button id="downloadPDF">Download PDF</button> <script>
document.getElementById('downloadPDF').addEventListener('click', function() {
// Create a new jsPDF instance
var doc = new jsPDF();
// Add your infographic content to the PDF
var infographicContent = document.getElementById('infographic').innerHTML;
doc.text(infographicContent, 10, 10);
// Save the PDF
doc.save('carbon_offset_infographic.pdf');
});
</script> </body>
</html>** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **0 -
Also add the cloudflare url to your Custom Apps authorized domains. If you want it to be approved outside of the Domo domain.
** Was this post helpful? Click 💡/💖/👍/😊 below. **
** If it solved your problem. Accept it as a solution! ✔️ **
Or do you need more help? https://calendly.com/matthew-kastner/15-minute-chat
Did I help you out? Feedback is priceless and will help me more than you know.Write a review!0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 738 Beast Mode
- 56 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive