Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxReportDesignerCallbacks.BeforeRender Property

Specifies the JavaScript function that handles the Web Report Designer’s BeforeRender client-side event.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.2.JSBasedControls.Common.dll

NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

#Declaration

[Parameter]
public string BeforeRender { get; set; }

#Property Value

Type Description
String

The name of a JavaScript function used to handle the BeforeRender event.

#Remarks

The BeforeRender event allows you to perform any action before the Web Report Designer is rendered.

You can also use this event to customize the Web Report Designer’s View Model before it is bound to an HTML element and/or Knockout binding is activated.

The handler function receives two parameters: the first parameter is the client-side Report Designer (the event sender) and the second parameter is the current View Model.

The following example handles the BeforeRender event to run the Report Wizard at application startup:

window.ReportingDesignerCustomization = {
    onBeforeRender: function(s, e) {
        s.RunWizard("NewViaReportWizard")
    }
}
See Also