DxReportDesignerCallbacks.PreviewParametersSubmitted Property
Specifies the JavaScript function that handles the Web Report Designer’s PreviewParametersSubmitted client-side event.
Namespace: DevExpress.Blazor.Reporting
Assembly: DevExpress.Blazor.Reporting.v25.2.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 |
Remarks
The PreviewParametersSubmitted event occurs when all parameter values are entered in the Parameters panel and the user clicks Submit.
The handler function receives two parameters - the first parameter is the client-side Preview object (the event sender) and the second parameter is an object with the following properties and methods:
ParametersViewModel- A View Model for report parameters.
Parameters- Report parameters and their submitted values.
The following code snippet demonstrates how to automatically collapse the Parameters Panel after the user submits the parameter values:
window.DesignerCustomization = {
onPreviewParametersSubmitted: function(s, e) {
var preview = s.GetPreviewModel();
if (preview) {
preview.tabPanel.collapsed(true);
}
}
}