New to Telerik Reporting? Download free 30-day trial

Changing Parameter Editors Type of the HTML5 WebForms Report Viewer

The article elaborates how to change the default parameters editors types for visible parameters in the HTML5 ASP.NET WebForms Report Viewer's Parameters Area.

The parameters editors types are defined through the Parameters element when creating the Telerik Report Viewer widget.

The following example illustrates how to set the Parameters method to the Telerik Report Viewer widget.

<telerik:ReportViewer EnableAccessibility="false" ID="reportViewer1" runat="server">
    ...
    <Parameters>
        <Editors SingleSelect="ComboBox" MultiSelect="ComboBox"></Editors>
    </Parameters>
</telerik:ReportViewer>

The Telerik Report Viewer Parameters element is optional. If it is not used, the Telerik Report Viewer will fall back to the default values.

See Also

In this article