I have a website that includes a report with multiple subreports. I have to add the functionality that the user can choose which subreports they can/cannot see. For example, the user may choose to only include reports 1,3 & 5, but not 2 & 4, or any of the rest. I will probably use some sort of list control to allow the user to select the subreports that they want included.
I have a reportviewer defined in my HTML:
So what is the optimal way for me to identify, show and/or hide the subreports based on the user's selection?
Thank you!
I have a reportviewer defined in my HTML:
<telerik:ReportViewer ID="ReportViewer1" runat="server" Height="500px" Width="100%"> <typereportsource typename="ETRrpts.IndividualSummary, ETRrpts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"></typereportsource> </telerik:ReportViewer>So what is the optimal way for me to identify, show and/or hide the subreports based on the user's selection?
Thank you!