Native Blazor Report Viewer Events Overview
The Native Blazor Report Viewer exposes events that will be emitted at various points in the report rendering process such as when the rendering begins, ends, etc.
OnRenderingBegin
Occurs before rendering the report. The event is triggered only on preview. The export operation has a dedicated event.
This event has one argument of type RenderingBeginEventArgs
which represents the device information settings that will be used for the rendering of the report in the HTML5
/HTML5Interactive
format. Sample usage:
OnRenderingEnd
Occurs after the rendering of the report finishes. The event is triggered only on preview. The export operation has a dedicated event.
This event has one argument of type RenderingEndEventArgs
which represents the returned DocumentInfo entity at the end of the report rendering.
Sample usage:
OnExportStart
Occurs before exporting the report. This event has one argument of type ExportStartEventArgs
which is an object with the following properties:
- DeviceInfo - The device info that will be used for the export operation.
- Format - The document format of the exported report.
- IsCancelled - Prevents the default render and export operation. Default value:
false
.
Sample usage:
OnExportEnd
Occurs after exporting the report. This event has one argument of type ExportEndEventArgs
which is an object with the following properties:
- Url - The url of the exported report as a resource.
- Format - The document format of the exported report.
- Handled - Prevents the default export operation. Default value:
false
. - WindowOpenTarget - Changes the
target
attribute specifying where to open the browser window. Default value isself
.
Sample usage: