Skip to content

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

License

Notifications You must be signed in to change notification settings

DevExpress-Examples/Blazor-Reporting-UI-Customization-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blazor Reporting (JavaScript-Based) - UI Customization API

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:

Event Handler Implementation
CustomizeParameterEditors Removes the time portion in the DateTime parameter editor.
BeforeRender Sets 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:

Event Handler Implementation
CustomizeElements Removes the Menu button
CustomizeMenuActions Moves the Save and New buttons from the Menu to the Toolbar.
ReportOpened Creates a custom report when users press the New button.
BeforeRender Runs the Wizard when the Report Designer starts.
CustomizeWizard Removes 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)

About

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

Topics

Resources

License

Stars

Watchers

Forks