<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