Hi there,
I want to add subreports dynamically as per the selection. The detail scenario are as follows
1. I have 3 silverlight check box control and 3 reports as rpt1, rpt2 and rpt3.
2. If a user select first two check box then I want to display rpt1 and rpt2.
3. If a user select second and third check box then I want to display rpt2 and rpt3.
4. If a user select first and third check box then I want to display rpt1 and rpt3.
Thanks
Hi there,
I want to add the reports in report book dynamically as per the selection. The detail scenario are as follows
1. I have 3 silverlight check box control and 3 reports as rpt1, rpt2 and rpt3.
2. If a user select first two check box then I want to display rpt1 and rpt2 in report book.
3. If a user select second and third check box then I want to display rpt2 and rpt3.
3. If a user select first and third check box then I want to display rpt1 and rpt3.
Thanks
<telerik:ReportViewer style="z-index:1000" ID="ReportViewer1" Width="990px" Height="1050px" runat="server" ShowDocumentMapButton="False" ShowHistoryButtons="False" ShowZoomSelect="True" Skin="WebBlue" Visible="false" BackColor="White" BorderColor="White" ForeColor="White"></telerik:ReportViewer>
Any help would be appreciated.
Thanks
<%@ServiceHost Service="Telerik.Reporting.Service.ReportService, Telerik.Reporting.Service, Version=x.x.x.x, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE" %>
new Telerik.Reporting.Data.Filter("= Fields.[Type]", ((Telerik.Reporting.Data.FilterOperator)(Telerik.Reporting.Data.FilterOperator.In)), "= Parameters.[Type]")});
reportParameter5.Name =
"Type";
reportParameter5.UI.AvailableValues.DataSource = dsUsers.Tables[0];
reportParameter5.UI.AvailableValues.ValueMember =
"Type";
reportParameter5.UI.MultiValue =
true;
reportParameter5.UI.Text =
"Type";
reportParameter5.UI.Visible =
true;
this.ReportParameters.Add(reportParameter5);
It create dropdownbox and it filter the column fantastic but it shows one red asterisk near the dropdownbox if i pass empty value. and nothing happen if I press Prieview button.
since I have empty value also in that column(in few rows).. I have tried using
reportParameter5.UI.Allowblank= "true";
but nothing happens...
//2nd Issue
I have used multiview on my page and in one view i have kept telerik reportviewer control
when i run my page it shows perfect report but it is showing print, refresh,navigation button on the tab of the reportviewer twice.
pls clear my doubt
thanx