The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
How do I add the print and download/export report buttons in the PowerBI report that is embedded in a web application?
These buttons are present in the Power BI service:
But not available once the report is embedded.
Solved! Go to Solution.
Hi @Anonymous ,
To add print button and download button, you can get it by Javacript API:
// Embed the report
var embedContainer = $('#embedContainer')[0];
var config = {
type: 'report',
tokenType: models.TokenType.Embed,
accessToken: 'YOUR_ACCESS_TOKEN',
embedUrl: 'YOUR_EMBED_URL',
id: 'YOUR_REPORT_ID',
permissions: models.Permissions.All,
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: false
}
};
var report = powerbi.embed(embedContainer, config);
// Add the print button
var printButton = $('#printButton');
printButton.on('click', function() {
report.print();
});
// Add the export button
var exportButton = $('#exportButton');
exportButton.on('click', function() {
report.exportData(models.ExportDataType.Summarized);
});
Best Regards
Hi @Anonymous ,
To add print button and download button, you can get it by Javacript API:
// Embed the report
var embedContainer = $('#embedContainer')[0];
var config = {
type: 'report',
tokenType: models.TokenType.Embed,
accessToken: 'YOUR_ACCESS_TOKEN',
embedUrl: 'YOUR_EMBED_URL',
id: 'YOUR_REPORT_ID',
permissions: models.Permissions.All,
settings: {
filterPaneEnabled: false,
navContentPaneEnabled: false
}
};
var report = powerbi.embed(embedContainer, config);
// Add the print button
var printButton = $('#printButton');
printButton.on('click', function() {
report.print();
});
// Add the export button
var exportButton = $('#exportButton');
exportButton.on('click', function() {
report.exportData(models.ExportDataType.Summarized);
});
Best Regards