Blazor Reporting (JavaScript-Based) - UI Customization API

February 13, 2026 ยท View on GitHub

This example demonstrates how to use client-side Blazor Reporting API to customize the Document Viewer and End-User Report Designer components.

Overview

The Document Viewer and Report Designer use the following objects to specify client-side event handlers:

You can define a client-side handler - a global function - in a separate JavaScript file. For example, the following function will handle the BeforeRender event to specify the Document Viewer's zoom level:

reporting_ViewerCustomization.js file

window.ReportingViewerCustomization = {
	//Change default Zoom level
	onBeforeRender: function(s, e) {
	    //-1: Page Width
	    //0: Whole Page
	    //1: 100%
	    e.reportPreview.zoom = -1;
	}
}

Reference the script file from the _Host.cshtml page.

_Host.cshtml file

<script src="~/js/reporting_ViewerCustomization.js"></script>

Assign the client-side function's name to a property in one of the objects mentioned above - DxDocumentViewerCallbacks or DxReportDesignerCallbacks.

  • Viewer.razor file
<DxDocumentViewer ReportUrl="SampleReport" Height="1000px" Width="100%">
	<DxDocumentViewerCallbacks BeforeRender="ReportingViewerCustomization.onBeforeRender" />
</DxDocumentViewer>

Note that you cannot use named constants in JavaScript functions. Specify strings instead.

Example: Localization

Related pages:

To localize Document Viewer and Report Designer UI, you need the following resources:

  • jQuery library. Add a reference to the _Host.cshtml page.
  • Translations in JSON format. You can obtain the files from the DevExpress Localization Service. Review the Localization help topic for more information.

The reporting_Localization.js file contains the onCustomizeLocalization function that loads JSON localization files. The files are located in the wwwroot\js\localization folder. Razor page markup assigns the function name to the CustomizeLocalization property in DxDocumentViewerCallbacks or DxReportDesignerCallbacks.

Note that the component's UI is built on DevExtreme widgets, so to localize the editors you should also use one of the approaches described in the following topic: DevExtreme - Localization. Specify web server's thread culture to apply culture-specific formats to numbers and dates.

Example: Anti-Forgery Tokens

Related pages:

To implement anti-forgery tokens that prevent CSRF attack, do the following:

Example: Document Viewer UI Customization

Related page: ViewerCustomization.razor. The reporting_ViewerCustomization.js file contains JavaScript functions that customize the Document Viewer in the following manner:

EventHandler Implementation
CustomizeParameterEditorsRemoves the time portion in the DateTime parameter editor.
BeforeRenderSets the default zoom level to "Page Width".

Example: End-User Report Designer UI Customization

Related page: DesignerCustomization.razor.

The reporting_DesignerCustomization.js file contains JavaScript functions that customize the Report Designer in the following manner:

EventHandler Implementation
CustomizeElementsRemoves the Menu button
CustomizeMenuActionsMoves the Save and New buttons from the Menu to the Toolbar.
ReportOpenedCreates a custom report when users press the New button.
BeforeRenderRuns the Wizard when the Report Designer starts.
CustomizeWizardRemoves certain report types from the Report Wizard.

Example: Custom Controls in the Report Designer Toolbox

Related pages:

Does This Example Address Your Development Requirements/Objectives?

(you will be redirected to DevExpress.com to submit your response)