Telerik Forums
Reporting Forum
4 answers
90 views
As someone new to Telerik controls I might be missing something obvious but I cannot seem to figure this out.

I am working in VS 2010 developing a ASP.NET / Ajax based solution.  So far on my development box everything is working without error.  Per the suggested standards I have created a library of reports which are then referenced in my web projects.  I have created a asp.net webpage which generically launches a given report when required. 

When this project is deployed to the production server the Telerik.Reporting.dll is correctly copied.  VS 2010 appears to automatically pick up the reference from my Report Library .DLL.  What does not get picked up is the reference to the Telerik.ReportViewer.WebForms DLL.  No matter where I located the reference to the Report Viewer (either in the library or main ASP.NET application), the resulting references all refer to the GAC.  Given that my deployment is via "xcopy", items may not reside in the GAC.

As long as I remember to copy the DLL's to my projects compiled folder everything works.  As this is not automated human error can creep in.  Is there a way I can automate the deployment of the required items?  Is this a question of how I refer to the control?  Is this a question of where it is compiled?

Thank you for any insight you might provide.
David
Top achievements
Rank 1
Iron
Veteran
Iron
 answered on 01 Mar 2011
0 answers
385 views
I have included an HTML Textbox on one of my reports and am using text which has been imported from regular text. I have read the article that explains that the & < and > characters need to be escaped but I'm not sure where or how I would do that. There are several times when the report gives my users an error and I am having to edit the contenet to remove these special characters. Thanks for any help.
AkAlan
Top achievements
Rank 2
 asked on 28 Feb 2011
1 answer
65 views
Dear Support team,

i have the below issue.

I have 1 group.
When i export the report in PDF, i have the details (with subreport) in another page from the group. (Check attached images)
Do you have any idea why this is happening? I cannot find the reason.

If i export the report in Excel, is perfect.
If i export the report in TIFF, same problem.

All PageBreak set to None.

I use:
VS 2008, ASP, VB
Latest version of Telerik Reporting.

thank you in advance for your time.

Best regards,
George.
Navarino Technology department.
Peter
Telerik team
 answered on 28 Feb 2011
0 answers
63 views
My crosstab in a sales report is not repeating the rows. it is only giving me the information of one sales person. i debug the Linq datasource and for sure it has values for all the sales personal.

The need crosstab should be like this

Sales person/Week | Week1 | Week2 | week3
empl 1                     | 1000    |  3000   | 5000
empl 2                     | 1050    |  500     | 4000
empl 3                     | 1500    |  6000   | 3000

but its only showing:

Sales person/Week | Week1 | Week2 | week3
empl 1                     | 1000    |  3000   | 5000

any idea ??
daouddajani
Top achievements
Rank 1
 asked on 28 Feb 2011
2 answers
100 views
Locally data can be seen, but when uploaded to whared web server, report dosent show any record. Here is the code


<%

@ Register assembly="Telerik.ReportViewer.WebForms, Version=4.2.10.1221, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" namespace="Telerik.ReportViewer.WebForms" tagprefix="telerik" %>

 

 <%

@ Import Namespace="System.Collections.Generic" %>

 

 <%

@ Import Namespace="System.Data" %>

 

 <%

@ Import Namespace="System.Data.sqlClient" %>

 

 <%

@ Import Namespace="Telerik.Reporting" %>

 

 <%

@ Import Namespace="Telerik.ReportViewer.WebForms" %>

 

 <%

@ Import Namespace="UnityTelerik" %>

 

 

page load code:

Con.Close()

Con.Open()

 

Dim dts As New  DataSet

 

 

da =

New SqlDataAdapter("select * from purchase order by lot_no", Con)

 

 da.Fill(dts,

"purchase")

 

  

 

Dim objectDataSource As New

Telerik.Reporting.ObjectDataSource()

 objectDataSource.DataSource = dts.Tables(0)

  

 

Dim c As New Report1

 c.DataSource = objectDataSource

 

ReportViewer1.Report = c

 ReportViewer1.RefreshReport()

 


Please advice me. to see my uploaded page visit telerik.mallikasoft.com


Jupiter
Top achievements
Rank 1
 answered on 28 Feb 2011
0 answers
61 views
Hi,

I have created a report using the Telerik Reporting product and it is displaying & printing in the Silverlight ReportViewer fine but when I try to save it to a PDF or TIFF image etc it is missing a lot of the data.

I have noticed that the data images that are missing are specifically for controls that I set in code and that the controls that are set like [=Fields.FieldName] are populated fine.

Can anybody help me with this issue? The version of Telerik Reporting I am using is 4.2.10.1221.

Much appreciated,

Nick
Nick Jacka
Top achievements
Rank 1
 asked on 28 Feb 2011
0 answers
134 views
Hey,
I am a new guy with telerik reporting with sqlclr.
I created a sqlclr storedprocedure in MSSQL 2008. it works fine in quary analyzer.
In the stroredprocedure list of the telerik reporting wizard,  it shows the sqlclr storedprocedure, but when i select the sqlclr storeprocedure and click Next button, it shows "the Stored Procedure doesn't exist". 

What's wrong with me. Please suggest me what to do as soon as possible.

Thanks

Md. Habibur Rahman
Technical Lead

Computer Ease Limited
                Information Architects

Mohammad Habibur
Top achievements
Rank 1
 asked on 27 Feb 2011
0 answers
85 views
I watched one of the training videos regarding localization of the reports.  It was simple and straight forward if you are creating a new localization for the reports only.  The solution i have already contains its own localization methodology.  The localization information is stored in XAML files named en-US.xaml and es-ES.xaml.  The application has its own methods for retrieving the information from these files.  For example, in my application if i wish to retrive the label for report name i would use the code App.FindStringResource("ReportName"). 

This code would determine which culture is being used and search teh XAML file for the appropriate string and return the correct translation.  I tried setting my label's value to =App.FindStringResource("ReportName") but when i click the preview button i get Object reference not set to an instance of an object.  If i go into the reports code behind and type in string reportName = App.FindStringResource("ReportName"); I get no compile time errors indicating that Visual Studio is seeing my App.FindStringResource method. 

Am i going about this the correct way and it just won't render until compile time, or is there a better way to handle this?
John
Top achievements
Rank 1
 asked on 27 Feb 2011
7 answers
706 views
Hi,
i have a question, i need to show page header only on the first page and not on the other ones.
Basically i have mulitcolumn report, but when i try to add report header it is not expanded over all the columns, so page header would do - but it is visible on every page which i do not want it to be.

Thank you for the help.
Sam Ur
Top achievements
Rank 2
 answered on 25 Feb 2011
6 answers
189 views
Is there any way in a multicolumn report to have the report header span the entire width of the report instead of just a single column? I have a two column report and on the first page I need to have a title span the entire page before the columns start. If the report header can not be used in this way, is there a way to dynamically change what is contained in the page header after the first page is done? What about making the page header only visible on the first page?

Thanks
Sam Ur
Top achievements
Rank 2
 answered on 25 Feb 2011
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?