New to Telerik Reporting? Download free 30-day trial

Changing Parameter Editors Type Overview

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

The parameters editors types are defined through the Parameters method when creating the Telerik Report Viewer widget. The available parameter editors on which the type could be changed are:

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

@(Html.TelerikReporting().ReportViewer()
    ...
    .Parameters(new Parameters { Editors = new Editors { SingleSelect = EditorTypes.ComboBox, MultiSelect = EditorTypes.ComboBox} }))

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

See Also

In this article