Skip to main content
All docs
V25.1
  • 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.v25.1.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