Telerik Forums
Reporting Forum
1 answer
799 views
In my previous post I put two issues under one title. So I corrected it to keep one isse per thread.
So here it is:
Issue #2: group headers. When the entire group is not going to fit the remainder of the current page, is it possible to force it to the next page? In other words - avoiding to put a page break into a group if it's possible?
There are four choices for PageBreak property of a group header: None, Before, After, BeforeAndAfter. What I am talking about is a fifth option "Before if the entire group doesn't fit on current page". Is it doable?

Thank you again,
Cezar
Peter
Telerik team
 answered on 21 Jan 2011
2 answers
133 views
I have almost completed an application for a client that includes a limited set of reporting capabilities, for which I have chosen Telerik Reporting as the platform. The site is in standard ASP.NET 4.0, non-Silverlight enabled. Is there an example you can provide where I can add the Silverlight report viewer to an existing application without having to create a new site that is Silverlight enabled and copying all of my files from the old site to the new site? I realize it will probably be a rather manual process with (potentially) a significant number of steps which is perfectly fine.

In the interim I will be using the ASP.NET report viewer control, but the Silverlight one looks nicer and it can help me push my client towards needing Silverlight.
Massimiliano Bassili
Top achievements
Rank 1
 answered on 21 Jan 2011
1 answer
205 views
Hi,
 
I am trying to show a report using telerik report viewer. I have one problem with this. The Header Name for all columns are displaying only in first page . How can i make visible in all pages. 
Steve
Telerik team
 answered on 21 Jan 2011
2 answers
267 views
Hello,

when i use the telerik report wizard to create a datasource from the entity framework it works good when i use a stored procedure that has no parameters. But when i use i select a stored procedure that depends on a parameter the details stay empty.

is it possible to use a parameterized stored procedure in combination with the entity framework?

kind regards,

Jonam
Jonam
Top achievements
Rank 1
 answered on 20 Jan 2011
1 answer
98 views
I am avaluating the trial version and I noticed that border shading feature is not present, or at least I can't find it. The shading is not part of a text box border style, only two-dimensional standard borders. Is it hidden somewhere, or is it simply missing?
Thank you,
Cezar
Steve
Telerik team
 answered on 20 Jan 2011
1 answer
230 views
Hi Guys !!!
               Report Viewer is not showing in my toolbox items.I tried manually reference add and tried also reset toolbox items but still not showing. I am using Telerik Reporting for windows Forms...


Thanks.
Regards
Muhammad Umair
Steve
Telerik team
 answered on 20 Jan 2011
3 answers
227 views
I am new to the Telerik suite and am just learning the ropes on creating Telerik reports.

I have a SQL Server stored procedure that outputs number of minutes (using datediff() function in SQL).  That is to be a signed integer.   My result set would look like this:
Date            Name        TotalMinutes
1/1/2011     Jim            20
1/2/2011     Jim            15
1/3/2011     Jim            30
1/4/2011     Jim            5 

I have a report setup to display the data just as it appears above. In a grouping footer I have it SUM the minutes to get a total (e.g. 70).  I created a user function that takes that value and adds 10 to it.  So, the expression for my textbox field in the footer is as follows:  = AddMinutes(Sum(Fields.TotalMinutes)), which given my example should return 80 for Jim

My user function is defined in a class file (DateFunctions.vb):

Public Shared Function AddMinutes(byval TotMinutes as Integer) as Integer
    return TotMinutes+10
End Function

I am not using any code-behind on the report itself.  I am just putting an Expression in through the GUI.  When I try to run this I get a Undefined Function error in the report.  I tried calling it as =DateFunction.AddMinutes(Sum(Fields.TotalMinutes)) and just as =AddMinutes(Sum(Fields.TotalMinutes)), but I keep getting the same error.

Please Help as I am stuck!
Steve
Telerik team
 answered on 20 Jan 2011
0 answers
120 views
Hi

i have a Telerik Report Service project that has a dfew telerik reports. i can browse to the service and all works fine.
i've added this service as a service reference to my web application.
TelerikReportServiceClient.ReportService.ReportServiceClient client = new TelerikReportServiceClient.ReportService.ReportServiceClient();
  
List<TelerikReportServiceClient.ReportService.ReportInfo> reports = client.ListAvailableReports().ToList();

 

i can run the above code and have a list of report in "reports ". the problem is that the list is meanless to me because i cannot create an instance of any of the reports.
unlike in the silverlight report service (http://blogs.telerik.com/evanhutnick/posts/10-02-11/understanding_the_telerik_reporting_wcf_service.aspx)
that has an event.

 

ServiceClient = new ReportServiceClient(ReportViewer.EnsureAbsoluteUri(new Uri("../ReportService.svc", UriKind.RelativeOrAbsolute))); 
  
            ServiceClient.ListAvailableReportsCompleted += new EventHandler<ListAvailableReportsEventArgs>(ServiceClient_ListAvailableReportsCompleted); 
  
void ServiceClient_ListAvailableReportsCompleted(object sender, ListAvailableReportsEventArgs e) 
        
            this.MyReports = e.Reports; 
    
            // Decide which report to load, or place them into a RadComboBox to let the user select different reports! 
            if (this.MyReports.Count > 0) 
            
                this.xReportViewer.Report = this.MyReports[1].FullName;                 
            
        }

Basically i need to know how to get the actual telerik reports or an instance of them that are in my reportservice project.
any help will be greatly appreciated.

Thanks
Avesh

Avesh
Top achievements
Rank 2
 asked on 20 Jan 2011
6 answers
779 views
Hi,

I have installed Reporting Q3 2009 on Windows 7 and using it in VS 2008, SQL 2005 and .Net 3.5 environment. I have created Reports class library and created a report which runs fine when I previewed it. However, when I added it to the web project, I keep getting "an item with the same key has already been added" on the line below
            RenderingResult result = reportProcessor.RenderReport("PDF", reportToExport, null);
I have used ReportViewer and also tried exporting programmatically to PDF format.

Any help is greatly appreciated.

Thanks,
Bhargavi.
Preston
Top achievements
Rank 1
 answered on 20 Jan 2011
0 answers
129 views
I'm building custom modules on DNN and would like to use Telerik Reporting for reports. I'm trying to figure out how to set up and configure my development environment. I'm using VS 2008 and created a solution with two projects, as per the best practices documentation, one with my DNN website (this is a Website not a Web Application) and one for telerik reports. The custom code in the DNN website has two sepeperate namespaces (for the various custom modules) and a couple of different Linq datacontext's each under a unique namespace. I'm trying to figure out how to reference the linq datasources from the telerik reports project. If I'm going about this the wrong way please point me the right direction.

It'd be great if Telerik had some detailed documentation on using the Reporting prodcut with DNN since they've included telerik controls with the standard DNN install.

Thanks, all help is appreciated.
Tim
Top achievements
Rank 1
 asked on 20 Jan 2011
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?