reporting-docs/knowledge-base/modify-parameter-area-html5...

1.1 KiB

title description type page_title slug position tags ticketid res_type
How to Modify the Layout of the Parameters Area Modify the Parameter Area Layout in an HTML5 Report Viewer how-to Customize the Parameters Area through CSS modify-parameter-area-html5-viewer 1490093 kb

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]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/customizing/overview%})