It looks like the reports don't work when being generated in iPad-Safari with our system being iFramed. It only displays the first page of the report and it looks like the pdf report is not being
downloaded. It seems to be opened up in regular browser view
I have tried changing the doctype as instructed here but that did not have any
effect:
http://www.telerik.com/support/kb/reporting/details/blank-report-in-asp.net-reportviewer-on-ipad-iphone
We are already adding 'Content-disposition' to
the response header:
response.AddHeader("Content-Disposition", string.Format("{0};FileName=\"{1}\"",
"attachment", strFileName));
We have the latest version.
Does anybody have any idea what might fix this?
ReportViewer1.Report = new MyReport();
var printScript = String.Format(
"{0}.PrintReport();"
, ReportViewer1.ClientID);
ScriptManager.RegisterStartupScript(
this
,
this
.GetType(),
"ReportPrint"
, printScript,
true
);
Hello
I am hoping someone can shed some light on my issue of printing labels. I have follwed the guide - How to: Create Multi-Column Report - Across the Page and Then Down . The output is repeating by the number of records returned. ie. 8 records, data is repeated 8 times
For test purposes we have an SQL recordset that returnes 8 records (for the test).
As part of the recordset we also return an incremental record number (as RowNumber) e.g
RowNumber Data
3 Some Data
4 Some Data
5 Some data
etc
We have added a list item into the details section , the Row group grouping expression is set to = Fields.RowNumber / 3.
The Static grouping expression is set to = Fields.RowNumber % 3.
We then get the 8 records repeated 8 times. It works as 3 across then down, just 8 times.
(incidentally we start the incremental count from 3 to end up with blank labels at the end of the report rather than within it)
What am I missing?
Hope that makes sense
Any assistance would be appreciated.
Thanks Andrew
ReportBook reportBook = new ReportBook();
reportBook.DocumentName =
"Combined";
foreach (selected person)
{
// generate the pdf report by exporting directly to disk
// Add the report to the report book
reportBook.Reports.Add(report);
}
Now, I need to create another PDF of the combined report.
I am not sure how to accomplish this. The examples/help articles don't show that detail.
Can you help me out?
Thanks, Mike
P.S. - I am really starting to understand and like your product. I love the fact that you can do so much programmatically.
Hi,
I have a report in which I will execute a pagebreak if the content of a field is true. I have attached a picture for understanding what I mean.
How can I solve this?
Thanks
Andreas
Hi,
I m using HTML5 telerik reports. It was working fine. From last few days it suddenly started giving following error on runtime:
"Internal Server Error:
An error has occurred.
Attempting to deserialize an empty stream."
Need support for this.