DxReportDesignerCallbacks.ReportSaved Property
Specifies the JavaScript function that handles the Web Report Designer’s ReportSaved client-side event.
Namespace: DevExpress.Blazor.Reporting
Assembly: DevExpress.Blazor.Reporting.v24.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 ReportSaved event. |
Remarks
Handle the ReportSaved event to respond when a report is saved to a server-side report storage.
The following code closes the report tab for the saved report:
window.ReportingDesignerCustomization = {
onReportSaved: function (s, e) {
s.CloseCurrentTab();
}
}
See Also