New to Telerik Reporting? Download free 30-day trial

How to Modify the Layout of the Parameters Area

Environment

Product Progress® Telerik® Reporting
Report Viewer HTML5 ASP.NET MVC

Description

If a report contains a Parameters Area with a large list of values, you may need to limit the visible values in the HTML5 Report Viewer. As a result, the user has to scroll to see all available values.

Solution

Apply custom CSS to the Parameters Area containers. For example:

.trv-parameter-editor-available-values .k-listview {
    max-height: 100px !important;
    overflow: scroll !important;
}

See Also

Customizing the HTML5 Report Viewer

In this article