The Report Viewer provides print report option in the toolbar to print a copy of the report. The page setup dialog allows you to set the paper size or other page setup properties. To see print margins, click Print Layout
on the toolbar.
The values allow you to set in the Page Setup dialog box for current session only. When you close the report and reopen it, it will have the default values again. The default values for the page setup dialog come from the report properties, which are set in the design view.
Print margins are displayed in the Print Layout only, to view report in print mode by default, set the printMode
property to true.
<body style="overflow: hidden; position: static; margin: 0; padding: 0; height: 100%; width: 100%;">
<div id="viewer" style="position: absolute; height: 100%; width: 100%;"></div>
<script src="index.js"></script>
</body>
$(function () {
$("#viewer").boldReportViewer({
reportServiceUrl: "https://demos.boldreports.com/services/api/ReportViewer",
reportPath: '~/Resources/docs/sales-order-detail.rdl',
printMode: true
});
});
You can view the Web API service used in the above code from the Reporting Service git hub location. For more information, see Samples and demos. By default, the Report Viewer renders report in normal layout in which the print margins are not displayed.
To open the print in a new tab of the current browser, set the property printOption
to NewTab
. By default, it shows the print dialog in the same page.
<body style="overflow: hidden; position: static; margin: 0; padding: 0; height: 100%; width: 100%;">
<div id="viewer" style="position: absolute; height: 100%; width: 100%;"></div>
<script src="index.js"></script>
</body>
$(function () {
$("#viewer").boldReportViewer({
reportServiceUrl: "https://demos.boldreports.com/services/api/ReportViewer",
reportPath: '~/Resources/docs/sales-order-detail.rdl',
printMode: true,
printOption: ej.ReportViewer.PrintOptions.NewTab
});
});
The pop-up blocker must be enabled for the page to open the print view in new tab.
You can specify the print page paper size, orientation at client-side to change page setup properties by setting the pageSettings
property.
<body style="overflow: hidden; position: static; margin: 0; padding: 0; height: 100%; width: 100%;">
<div id="viewer" style="position: absolute; height: 100%; width: 100%;"></div>
<script src="index.js"></script>
</body>
$(function () {
$("#viewer").boldReportViewer({
reportServiceUrl: "https://demos.boldreports.com/services/api/ReportViewer",
reportPath: '~/Resources/docs/sales-order-detail.rdl',
printMode: true,
pageSettings: {
orientation: ej.ReportViewer.Orientation.Landscape,
paperSize: ej.ReportViewer.PaperSize.Letter
}
});
});
To set margin values to the report page setup, use the property margins
and specify the value to top, right, bottom, and left.
<body style="overflow: hidden; position: static; margin: 0; padding: 0; height: 100%; width: 100%;">
<div id="viewer" style="position: absolute; height: 100%; width: 100%;"></div>
<script src="index.js"></script>
</body>
$(function () {
$("#viewer").boldReportViewer({
reportServiceUrl: "https://demos.boldreports.com/services/api/ReportViewer",
reportPath: '~/Resources/docs/sales-order-detail.rdl',
printMode: true,
pageSettings: {
margins: {
top: 0.5,
right: 0.25,
bottom: 0.25,
left: 0.25
}
}
});
});
The values set in the margin property is considered as inches input.
To set height and width values to the report page setup, use the height
, and width
properties.
<body style="overflow: hidden; position: static; margin: 0; padding: 0; height: 100%; width: 100%;">
<div id="viewer" style="position: absolute; height: 100%; width: 100%;"></div>
<script src="index.js"></script>
</body>
$(function () {
$("#viewer").boldReportViewer({
reportServiceUrl: "https://demos.boldreports.com/services/api/ReportViewer",
reportPath: '~/Resources/docs/sales-order-detail.rdl',
printMode: true,
pageSettings: {
height: 11.69,
width: 8.27
}
});
});
The values set in the height and width property is considered as inches input.
When the report has more images, the browser will send the report stream to the print dialog before the images are completely loaded. To load the print report stream with complete images, you should set the EmbedImageData
property to true in OnInitReportOptions
as shown in the following code.
[NonAction]
public void OnInitReportOptions(ReportViewerOptions reportOption)
{
reportOption.ReportModel.EmbedImageData = true;
}
Replace the following code sample in client side HTML file.
<script type="text/javascript">
$(function () {
$("#viewer").boldReportViewer(
{
reportServiceUrl: "/api/PrintWithImages",
reportPath: '~/Resources/docs/product-details.rdl'
});
});
</script>
You can view the Web API service used in the above code from the Reporting Service git hub location. For more information, see Samples and demos. In this tutorial, the
product-details.rdl
report is used, and it can be downloaded from here.
While printing report, the external styles are used in the application overrides printable page style and prints output with incorrect alignments. To avoid the external script overriding, set the isStyleLoad
property to false, which will print the page using only the Report Viewer styles.
<script type="text/javascript">
$(function () {
$("#viewer").boldReportViewer(
{
reportServiceUrl: "/api/ReportViewer",
reportPath: '~/Resources/docs/product-details.rdl',
reportPrint: "onReportPrint"
});
});
function onReportPrint(args) {
args.isStyleLoad = false;
}
</script>
Report Viewer provides events that help you to show the progress information when the printing takes a long time to complete.
printProgressChanged
in Report Viewer initialization. <body style="overflow: hidden; position: static; margin: 0; padding: 0; height: 100%; width: 100%;">
<div id="viewer" style="position: absolute; height: 100%; width: 100%;"></div>
<script src="index.js"></script>
</body>
function onPrintProgressChanged(args) {
if (args.stage === "beginPrint") {
$('#viewer').ejWaitingPopup({ showOnInit: true, cssClass: "customStyle", text: "Preparing print data.. Please wait..." });
}
if (args.stage === "printStarted") {
var popupObj1 = $('#viewer').data('ejWaitingPopup');
popupObj1.hide();
}
else if (args.stage === "preparation") {
console.log(args.stage);
if (args.preparationStage === "dataPreparation") {
console.log(args.preparationStage);
console.log(args.totalPages);
console.log(args.currentPage);
if (args.totalPages > 1 && args.currentPage > 1) {
var progressPercentage = Math.floor((args.currentPage / args.totalPages) * 100);
if (progressPercentage > 0) {
var popupObj2 = $('#viewer').data('ejWaitingPopup');
popupObj2.setModel({ text: "Preparing print data.." + progressPercentage + " % completed.. Please wait..." });
}
}
}
}
args.handled = true;
}
$(function () {
$("#viewer").boldReportViewer({
reportServiceUrl: "https://demos.boldreports.com/services/api/ReportViewer",
reportPath: '~/Resources/docs/product-details.rdl',
printProgressChanged: onPrintProgressChanged
});
});
The extra blank page is created when the Body of your report is too wide for your page. If you want the report to appear on a single page, all the content within the report body must fit on the physical page and the body width should be lesser or equal to the following formula:
Body Width <= Page Width - (Left Margin + Right Margin)
For more details on designing a report to remove the empty pages in the report, refer to the knowledge base article of report page sizing.