Telerik Forums
Reporting Forum
4 answers
212 views
We have a report using Q3 2010 Reporting that contains html tags that we need for the on screen report, but absolutely dont want for export to PDF and other export formats. I see we can do a StripHTMLTags easy enough but when using that, it affects the formatting of the online report viewer presentation adversely. Is there a way to do StripHTMLTags Only if we are exporting? Thanks.
Maliwan
Top achievements
Rank 1
 answered on 14 Feb 2013
12 answers
352 views
Hi, 

How open .trdx file in Silverlight ReportViewer?
Dave Navarro
Top achievements
Rank 2
 answered on 13 Feb 2013
4 answers
167 views
I have created a report in Silverlight. The report has a string parameter that its value is set in code behind of MainPage.xaml like this:(the MainPage.xaml contains a Silverlight ReportViewer)

public MainPage()
 {
     InitializeComponent();
     this.ReportViewer1.RenderBegin += new RenderBeginEventHandler(ReportViewer1_RenderBegin);
 }
 
 void ReportViewer1_RenderBegin(object sender, RenderBeginEventArgs args)
 {
     args.ParameterValues.Add("reportParameter", "Header1;Header2;Header3");
 }

I want to split this parameter  by comma in MyReport.cs and add "Header1", "Header2" and "Header3" to GroupHeaderSection Items of the report.

First, I write below code in the constructor method of report:
string[] splitedReportParameter =  this.ReportParameters["reportParameter"].Value.ToString().Split(',');
for (int i = 0; i < splitedReportParameter.Length; i++)
{
    Telerik.Reporting.TextBox CaptionTextBox = new Telerik.Reporting.TextBox();
    labelsGroupHeader.Items.AddRange(new ReportItemBase[] { CaptionTextBox });
    CaptionTextBox.CanGrow = true;
    CaptionTextBox.Name = splitedReportParameter[i] + "CaptionTextBox";
    CaptionTextBox.StyleName = "Caption";
    CaptionTextBox.Value = splitedReportParameter[i];              
}
but, it didn't work and I think the reason is that the report parameter isn't set in the constructor. Moreover, I have a problem related to Location and Size of each TextBox.

Thanks,

Negin

Negin
Top achievements
Rank 1
 answered on 13 Feb 2013
0 answers
67 views
Hi,

Can someone guide me how to place the data from database in a table format. I would like display the data in multiple tables. 

Thanks in Advance,
Sudhakar
Sudhakar
Top achievements
Rank 1
 asked on 13 Feb 2013
2 answers
175 views
Hello, I want to know how to use a report I did in Telerik Report Designer, the report has a SqlDataSource that calls a stored procedure which fills the report with data that I want.

I have an application in WPF which has a ReportViewer and I do the following:

Telerik.Reporting.UriReportSource uriReportSource = new Telerik.Reporting.UriReportSource();

uriReportSource.Uri = @"C:\Users\educles\Documents\Report1.trdx";

this.reportViewer.ReportSource = uriReportSource;



but when I run the application I get the error specified in the file uploaded "toma2.png"

The error says that the problem is about a ConnectionString but I not repair it, if I could solve this problem once can see the report as I do in order to manipulate the SqlDataSource that has the report and to send parameters to show me different data.

I would be very grateful because I have hours and hours and not fart repair.

Greetings!
Filander
Top achievements
Rank 1
 answered on 12 Feb 2013
1 answer
123 views
I have a summary report that uses a few different subreports.  This may be an easy question but I just can't seem to figure out how to get them lined up correctly.  If I have the following subreports:
A  B
C
D

my report is putting C after the height of B which happens to be a little bigger than A.  I want C to follow A.  (D is fine)  Is this possible?

thanks!

Steve
Telerik team
 answered on 12 Feb 2013
1 answer
247 views
Is there a way to apply the RunningValue function to a series in a line chart?  I want tot display the cumulative total at each point.  Importing stored procedures from SRSS reports and would like to not have to modify the Stored procedure.
Stef
Telerik team
 answered on 12 Feb 2013
3 answers
114 views
I am trying to figure out a way that I can show the two fileds in the Datalable.  I have seen other post on this and one said to to use the ItemDataBound event, which I have tried but Telerik.Charting is not recognized.  I have tried to add Telerik.Windows.Controls.Charting but that also does not seem to exist.  Is there another library I need?

I am using 2012Q3 Reporting
Eric Klein
Top achievements
Rank 1
 answered on 12 Feb 2013
1 answer
113 views
Please add QR code printing to Telerik!

It would be very helpful in our application if we could print a QR code on certain reports that are given to customers. Then we can scan them when the customer returns....

Dan
Steve
Telerik team
 answered on 12 Feb 2013
4 answers
370 views
Hi, I have installled latest Telerik reporting version on windows 7 64-bit vs2010 but experienced the blank screen in the create new data source. See attached.
I was merely following the tutorial to create a simple report. I have sql express running no issue at all for other projects in the same PC. What could be the error? Appreciate any pointers. Thanks!

Regards
cwk
Steve
Telerik team
 answered on 11 Feb 2013
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?