Skip to main content
All docs
V25.1
  • DxReportDesignerCallbacks.ExitDesigner Property

    Specifies the JavaScript function that handles the Web Report Designer’s ExitDesigner 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 ExitDesigner { get; set; }

    Property Value

    Type Description
    String

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

    Remarks

    The ExitDesigner event is raised on the client side when the Web Report Designer is closed.

    The handler function receives the client-side Report Designer (the event sender).

    The following code redirects to the Viewer page when the user clicks Exit in the Web End-User Report Designer:

    window.ReportingDesignerCustomization = {
        onExitDesigner: function (s, e) {
            window.location = "documentviewer/EmployeeReport";
        }
    }
    
    See Also