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.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.v24.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