DxReportDesignerCallbacks.CustomizeSaveAsDialog Property
Specifies the JavaScript function that handles the Web Report Designer’s CustomizeSaveAsDialog client-side event.
Namespace: DevExpress.Blazor.Reporting
Assembly: DevExpress.Blazor.Reporting.v25.1.JSBasedControls.Common.dll
NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common
Declaration
Property Value
Type | Description |
---|---|
String | The name of a JavaScript function used to handle the CustomizeSaveAsDialog event. |
Remarks
The End-User Report Designer invokes the Save As dialog when the user executes the Save As… command to save a report with a new name.
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 As dialog object: SaveAsReportDialog.
- Customize
- A method that allows you to modify the Save As dialog based on the specified template and model: customize.
You can review the following similar ASP.NET Core example for more information: