Telerik Forums
Reporting Forum
1 answer
172 views
I have been evaluting Telerik Reports for my client. I have Produced some of their example reports. I am facing following problem.

I have placed a sub report in Report Hearder which shows company name and address from the database. it is working fine in print preview mode or when exported to pdf etc. but when i placed company logo along with the sub report in Report Header. Then in print preview mode the sub report's data is shown on one page with the details of first page of reports and logo is shown on second blank page. And there are alternative Blank pages with no data at all through out the report. But in interactive view both subreport and logo are shown in one place intact with each other.  
Please help me
Steve
Telerik team
 answered on 25 Jan 2012
1 answer
127 views
Dear,
I have been evaluating Telerik Reporting for one of my clients. I have made a cross tab report. I am facing a problem while exporting it to pdf and xsl. I will list these problems one by  one below

1. When I export the crosstab report to pdf. The Total page number in report footer shows always 0(zero) on every page of pdf.
2. When I export the crosstab report to xls some of the columns of crosstab are mapped to two columns of xls file which are merged to show one column. Please help me this is not the clients requirement.
Steve
Telerik team
 answered on 25 Jan 2012
2 answers
62 views
Hi,

I creates a report containing several charts. The number of charts and their content depend on report parameters which I pass from the silverlight client to the report service.

Therefore, I used the NeedDataSource - event of the report to create the charts and add them to the details section of the report. This works perfectly fine except of one thing: The silverlight report viewer shows all the charts on one single page instead of splitting them into several pages. When I export the report to PDF using the viewer the report is correctly devided into several pages.

What am I doing wrong here? Why is the viewer scaling all objects onto one page even though the dimensions of the objects are clearly set?
Tim
Top achievements
Rank 1
 answered on 25 Jan 2012
3 answers
93 views

Hi,

I am a newer in the Telerik Report.
I need to implement Telerik Report in the Asp.net -2010 ajax web application.
How can i implement Telerik Report in the application using Report viewer?

Thanks
sindu.
Steve
Telerik team
 answered on 25 Jan 2012
1 answer
107 views
I am pretty new to Telerik reporting. So I will try to explain the issues I am facing.

I have a report that binds to the following stored procedure
CREATE PROCEDURE GetSalesValue
 
AS
SELECT  DATENAME(mm, Sales.SaleOrderDate) AS MonthOfSale ,
        SUM(Quotes.NETPrice) AS SalesValue ,
        Source.Source
FROM    Quotes
        INNER JOIN Sales ON Quotes.QuoteId = Sales.QuoteId
        INNER JOIN Enquiry ON Quotes.EnquiryId = Enquiry.EnquiryId
        INNER JOIN Source ON Enquiry.SourceId = Source.SourceId
GROUP BY Sales.SaleOrderDate, Year(Sales.SaleOrderDate),
        Source.Source

this works as expected as in displaying the correct results in month order.  When this sproc gets bound to the report the months are in alphabetical order and not in month order. As you can see attached

I also tried to write the sproc differently and this works both with ASC and DESC

SELECT  DATENAME(mm, Sales.SaleOrderDate) AS MonthOfSale ,
        SUM(Quotes.NETPrice) AS SalesValue ,
        Source.Source
FROM    Quotes
        INNER JOIN Sales ON Quotes.QuoteId = Sales.QuoteId
        INNER JOIN Enquiry ON Quotes.EnquiryId = Enquiry.EnquiryId
        INNER JOIN Source ON Enquiry.SourceId = Source.SourceId
GROUP BY Sales.SaleOrderDate,
        Source.Source
ORDER BY MONTH(Sales.SaleOrderDate) ASC     


Is there a way around this?

Many thanks
Simon
Top achievements
Rank 1
 answered on 25 Jan 2012
19 answers
1.4K+ views
I am currently trying to use export to pdf. It takes forever. Can seem to comprehend why it takes longer. Any hints on what i can look at to identify bottle necks. Secondly i want to know a little bit more about how u are generating pdf files specially the large files which could 10 to 12 mb. In the past i was using aspose to convert to pdf and it brought our server down cuz of high memory usage. Please explain.
You guys have a nice suite of products. I am so glad i finally convinced my company to move from infragistics.(nightmare!)
Prasad
Top achievements
Rank 1
 answered on 25 Jan 2012
2 answers
403 views
hi telerik,

          I am working on invoice for bundle items , need to group the last three column as shown in the attachment. "AGG" column shows the no.of bundles (i.e. 1 here) and in the next two columns need to show the sum ( appx. 1000).  can you suggest how to achieve the design as shown in the attachment.   
sunil
Top achievements
Rank 1
 answered on 25 Jan 2012
3 answers
283 views
I have a class called clsInvoice.  I have a report called InvoiceReport. When InvoiceReport is created, the DataSource is assigned to be a clsInvoice.  Then I assign a few images on the report manually.  Then I preview the report.  All is well.

Now I want to print multiple invoices.  I created a new report MultInvoiceReports.  I added a detail band only.  I added a SubReport to this band, and set it to be an InvoiceReport.  My InvoiceReports data source is an ObservableCollection<clsInvoice>.

I tried for a long time to get bindings to work.  I never could.  Eventually I used the NeedDataSource method and manually assigned it.  The images I was creating and assigning did not print, but the report worked otherwise.

Next, I removed the subreport from the designer, and tried everything manually:
foreach (clsInvoice c in InvoiceList)
{
  // Create a new InvoiceReport
  // set the data source to c
  // Assign my images
  // Create a subreport
  // Set the ReportSource to the InvoiceReport
  // Find the DetailSection in MultInvoiceReports and add the subreport to DetailSections.Items.
}

This makes the reports all show, however there are 4 to 7 blank pages between sub reports, and again my images do not work.

Is there a better way to do this?
Paul
Top achievements
Rank 1
 answered on 24 Jan 2012
1 answer
77 views
We have a Web applicaton that is getting the following error when trying to run a report.  The database and web server are on the same machine and the application functions correctly.  Can anyone give me a idea where I could look on fixing this issue,
Stephen
Top achievements
Rank 1
 answered on 24 Jan 2012
0 answers
58 views
Hello,

We are trying to give users a context menu when they right-click over the report (rather than showing 'Silverlight').
We can capture the event and detect it is over the reportviewer.

The issue for us is that we want to give them copy/paste functiionality if there is text highlighted in the textboxes that hold the parameters, but not otherwise.  The biggest issue is that we can't find a way of 'getting at' the textboxes that hold the parameters.

Any suggestions - is this possible at all?

Thanks,
 Ed
Ed
Top achievements
Rank 1
 asked on 24 Jan 2012
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?