I'm stuck with this error for quite sometime now.<UserControlx:Class="SLReportSample.MainPage"xmlns:telerik="clr-namespace:Telerik.ReportViewer.Silverlight;assembly=Telerik.ReportViewer.Silverlight"mc:Ignorable="d"d:DesignHeight="300"d:DesignWidth="400"><Gridx:Name="LayoutRoot"><telerik:ReportViewerx:Name="ReportViewer1"Width="1000"ReportServiceUri="../ReportService.svc"Report="ReportLib.EmployeeSample, ReportLib,Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"></telerik:ReportViewer></Grid></UserControl>
Hello Telerik Team,
I have a question with regard to telerik reports. I am converting crystal reports to telerik reports.
As we have "Default values for nulls" and "Exceptions for nulls" (in the section expert) option in crystal reports.
Can we set like that anywhere in the telerik report.Beacuse in my telerik report if i have empty string value it will not evalute the conditional formaating correctly.
I appreciate your response.
Thank you,
Smith
private void Print()
{
System.Data.EntityClient.
EntityConnectionStringBuilder entCSB = new System.Data.EntityClient.EntityConnectionStringBuilder();
entCSB.ConnectionString =
App.CurrentApp.CurrentEnvironment.Connection;
Telerik.Reporting.
ReportBook book = new Telerik.Reporting.ReportBook();
foreach (OpenOnlineOrderDetails details in Transactions)
{
if (details.Selected)
{
book.Reports.Add(new OrderReport(entCSB.ProviderConnectionString, details.SaleTransactionID.ToString()));
}
}
AppView.Views.
ReportForm report = new LogiText.AppView.Views.ReportForm(book);
report.Show();
}
And this is the form with the report viewer:
public partial class ReportForm : Form
{
Telerik.Reporting.
ReportBook book;
public ReportForm(Telerik.Reporting.ReportBook reportBook)
{
InitializeComponent();
this.book = reportBook;
}
private void ReportForm_Load(object sender, EventArgs e)
{
reportViewer1.Report =
this.book;
reportViewer1.RefreshReport();
}
}