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

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

    Property Value

    Type Description
    String

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

    Remarks

    The Save dialog appears in the Web Report Designer when the user attempts to close a report with unsaved changes. The CustomizeSaveDialog event allows you to change this dialog’s settings.

    The handler function receives two parameters: the first parameter is the client-side Report Designer (the event sender) and the second parameter is an object with the following properties and methods:

    Popup
    The Save dialog object: SaveReportDialog.
    Customize
    A method that allows you to modify the Save dialog based on the specified template and model: customize.

    You can review the following similar ASP.NET Core example for more information:

    View Example: Customize Save As and Open Dialogs

    See Also