Izenda Logo

This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/

Question

How can I default the filter panel to closed when a user accesses the Report Viewer?

Answer

To default Filters in Report Viewer to closed on load of page use the following code in ReportViewer-Body.ascx. The user will need to click on the Filter Tab in the viewer to expand the filter panel and see the filters.

jq$('#tab1li').removeClass('active');
jq$('#tab1').hide();
jq$('#updateBtnPC').show();