Telerik Forums
Reporting Forum
2 answers
88 views
Dear Staff,

I use your nice ASP .Net Ajax application.

I have a radGrid with a quite complex sql query (to sql server).
On this grid the user can change column order, sort, group, filter and so on.

Due some limitation of grid (is not a report :) ) I would like to transpose all the situation on grid - changed by the user at runtime - to a report.

Is that easly possible?
Do you have an example to study?

greetings

Renato



RRE
Top achievements
Rank 2
Iron
 answered on 22 May 2009
3 answers
291 views
Hi, I hope you can help.

We are currently using SQL Server Reporting which runs a stored procedure, which depending on supplied parameters it will then dynamically alter the fields of the output and return it to SQL server Reporting. Is there a way to do this in Telerik Reporting with a stored procedure and input parameters ?

Basically the fields on the output report will alter depending on what the input parameters where? Can this be done in Telerik and if so, is there an example of this.

Thanks a lot,

Pete Walker.
Steve
Telerik team
 answered on 21 May 2009
1 answer
58 views
HI. I have a problem with the detail section of my report. I have set my detail section to 3 columns. My report dynamicly generates pie charts. In the win viewer my report gets generated perfectly. All charts appear next to each other as I intended. In my web viewer this is not the case. My columns get created below each other. I can't figure out why. Now I try to take my report a step further. I created a Template report from which I inherit a report header. Works fine if I only have one column in my derived report. If I have more than one column, as is the case with my dynamic chart report, the report gets totally messed up. In both viewers the report not only displays the columns below each other but disaligned as well. This is a real headache and I can't get the issue resolved. My company is really impressed with the product. I'm using v3.0 trail. If I can't solve this problem, then my company is not going to give me the go ahead. Any help with this will be greatly appreciated. I will provide the source code and screen shots if needed. I'm using C# and ASP.NET.
Using Mozilla Fire Fox and Internet Explorer 8.
Steve
Telerik team
 answered on 21 May 2009
1 answer
94 views
HI. I have a problem with the detail section of my report. I have set my detail section to 3 columns. My report dynamicly generates pie charts. In the win viewer my report gets generated perfectly. All charts appear next to each other as I intended. In my web viewer this is not the case. My columns get created below each other. I can't figure out why. Now I try to take my report a step further. I created a Template report from which I inherit a report header. Works fine if I only have one column in my derived report. If I have more than one column, as is the case with my dynamic chart report, the report gets totally messed up. In both viewers the report not only displays the columns below each other but disaligned as well. This is a real headache and I can't get the issue resolved. My company is really impressed with the product. I'm using v3.0 trail. If I can't solve this problem, then my company is not going to give me the go ahead. Any help with this will be greatly appreciated. I will provide the source code and screen shots if needed. I'm using C# and ASP.NET.
Using Mozilla Fire Fox and Internet Explorer 8.
Steve
Telerik team
 answered on 21 May 2009
5 answers
149 views
I have a field, called BudgetedCost.  That field either contains a numeric value or ****, this is displaying fine in the Detail Section.  Great.  Now, in the Group Footer, I want to either display a Sum of BudgetedCost (which I can do) or if any of the detail rows contain ****, I need to display ****.  I can't figure out how to do this.  Any help?  Thanks in advance!
Steve
Telerik team
 answered on 21 May 2009
3 answers
105 views
Hi,
I'm using WebForm ReportViewer in Telerik Reporting version 2.9.9.202. I have a problem with SkinPath property because it sees relative url incorrectly when website is hosted right on a web application (without under virtual path). In that case, the path was resolved incorrectly so it causes all images on viewer to be broken (disappear).
I use below simple markup ReportViewer on ascx user control (put on a page named ViewReport.aspx)

<telerik:ReportViewer ID="rptView" runat="server" Skin="ReportViewer" SkinsPath="~/Teleriks/Images" ... /> 


In above code, I set a relative url in SkinsPath property in order the image folder's path is always resolved correctly wherever this user control would be put. And the issue comes up when I deploy the web site to IIS. There are two cases:

1. When my website is hosted under a virtual path of a web application (e.x: http://localhost/TelerikApp/ViewReport.aspx, TelerikApp here is a virtual path on web application, not a folder in website), the images show up fine on report viewer (image's url is /TelerikApp/Teleriks/Images/[name].gif).
2. When the website is hosted right on a web application without virtual path (e.x: http://localhost/ViewReport.aspx), images disappear on report viewer because it was resovled incorrectly. I used Firebug to debug and saw the image's url is "//Teleriks/Images/[name].gif".

Does ReportViewer cause that behaviour (resolving the relative url in SkinPath property) or it's default ASP.NET processing ? If it's Telerik, could you help me find a solution (because i'm going to put ReportViewer markup in skin file so the path should be consistent) ?
Duy
Top achievements
Rank 1
 answered on 21 May 2009
2 answers
128 views
Hi,

I'm using WebForm ReportViewer in Reporting version 2.9.9.202. Because I set the height of report rather large so when I'm waiting for ReportViewer running, it shows defined progress text but in middle of viewer. The thing is user can't see that text if they don't scroll down to middle of page.

I would like to ask whether ReportViewer supports set position for progress text to top, middle or bottom in viewer ? I went around report viewer webform but couldn't find any help
Duy
Top achievements
Rank 1
 answered on 20 May 2009
1 answer
398 views
I am currently running a report that takes several minutes to complete.  We have a blind user working with this application and I need to notify him when the report rendering has completed.  There is a RenderingBegin event, but is there any kind of RenderingComplete event or equivalent?  I plan to use this event to trigger a message box to notify the user when the report rendering has completed.

Thank you
Steve
Telerik team
 answered on 20 May 2009
1 answer
238 views
RptScope = ReportScopeProvider.GetNewObjectScope();   
using (RptScope)    
{  
InspectionReport result = (from ir in RptScope.Extent<InspectionReport>() select ir).First();   
this.DataSource = result;   
  }  
 
 
I am new to telerik reporting. I am using Business Object Datasource.. 
Here is the code...

 

But I get an Exception:'The 'IObjectScope' is already closed' when I preview the report design or when I run it.
But if I debug thru it , I do see the data being returned. ie. If I step through each line of code posted above , then the report shows the data else I get the exception.

Am I missing something ?

 

 

 

 

 

 

 

 

Steve
Telerik team
 answered on 20 May 2009
1 answer
140 views
I have a report that in the detail section, I have a subreport.  That subreport could have 1 row or 50.  After 15 rows, I would like the next 15 row to appear on another page, etc., etc.. 

Also, I have another subreport that I need to appear just on the first page. I currently have it on the master report in a group footer.  I could put this anywhere as long as it only appears on the first page.

I have tried this many, many different ways.

Here's an example of what the report would look like.  

http://lovingtheiphone.com/COOPCONTRACT4-13-9-4521_xls.jpg

The subreport detail section is where I need it restricted to 15 per page.

Please advise.
Steve
Telerik team
 answered on 20 May 2009
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?