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

DxDocumentViewerCallbacks.ParametersSubmitted Property

Specifies the handler for the ParametersSubmitted client-side event that occurs when the user clicks Submit in the Parameters Panel.

Namespace: DevExpress.Blazor.Reporting

Assembly: DevExpress.Blazor.Reporting.v24.2.JSBasedControls.Common.dll

NuGet Package: DevExpress.Blazor.Reporting.JSBasedControls.Common

#Declaration

[Parameter]
public string ParametersSubmitted { get; set; }

#Property Value

Type Description
String

The name of a JavaScript function used to handle the ParametersSubmitted event.

#Remarks

The ParametersSubmitted 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 Document Viewer (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 demonstrates how to automatically collapse the Parameters panel after the user submits the parameter values:

window.ReportingViewerCustomization = {
    onParametersSubmitted: function(s, e) {
        var preview = s.GetPreviewModel();
        if (preview) {
            preview.tabPanel.collapsed(true);
        }
    }
}
See Also