Skip to main content

DxReportDesignerCallbacks.CustomizeSaveDialog Property

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

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v23.2.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 that has been changed. The CustomizeSaveDialog event enables 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.

  • Customize
    A method that allows you to modify the Save dialog based on the specified template and model.

See Also