Hi
I am currently using the Reporting tool 2011 Q3
I know it is an outdated version of the tool.
Just would like to know if anyone could assist me.
I have the standard options that comes with the report viewer to export the data.
When the users export the data in excel or pdf the file seems to export as i have created the report.
The issue i am having is when i export the data in a csv format
i have two sub reports in my main report and a page break which separates the two sub reports.
The first sub reports data gets exported but the second one doesn't any idea how i could resolve this or remove the option of exporting to Csv.
i have tried
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="CSV" visible="false">
</Extension>
</Render>
</Extensions>
</Telerik.Reporting>
but it does not work.
Regards
Hello, i would like to get action (in mine case it is NavigateToReport) object on textbox databound event.
As i see in VS watch there is parameter which gives action object. But its visible only in runtime.
public void textboxdatabound(object sender, EventArgs e)
{
var tbox = (Telerik.Reporting.Processing.TextBox)sender;
var action = ((Telerik.Reporting.Processing.ReportItemBase)(tbox)).Action; <--- Gives unknown member error.
}
Hi all,
here is the attachment of telerik report sample which i created,
I need to show the different currency symbols in single report , one amount with Home currency means region Currency , and other amounts in Converted amounts
with Dollar or other etc... so at home currency i need to show regional currency symbol and other converted amounts should be with other symbols. how can i achieve those different symbols in a report
Thanks
Prashanth
I created a method to print a bunch of invoices. Each one printed individually by another method (and resolver) has a correct output. However, when I use the report book method, the PageFooter sections does not appear at all.
I pasted the resolver method because the design is correct and I don't see any other relevent part for this question. Please let me know for further information.
01.private ReportSource ResolveInvoices(string ids)02.{03. var book = new ReportBook();04. ids.Replace("[Invoices]", "").Replace("\"", ""05. .Split(',').ForEach(item =>06. {07. int id;08. if (!int.TryParse(item, out id)) { return; }09. 10. var report = Activator.CreateInstance(typeof(ReportDefinitions.Invoice)) as Report;11. Debug.Assert(report != null);12. 13. report.ReportParameters["InvoiceId"].Mergeable = false;14. report.ReportParameters["InvoiceId"].Value = "=" + id;15. book.Reports.Add(report);16. });17. return new InstanceReportSource18. {19. ReportDocument = book20. };21.}
Hi I am using the report viewer for the web and have noticed that the reports, when viewed on the web (using the viewer control) are not rendering the full report in portrait. It appears to be trimming off the bottom third of the report and bleeding it over to the next pages.
So… on the viewer the page looks like it is shorter than it is, but when I print or export it, the report prints as I would expect. Also on the viewer it shows 5 pages but when printed it prints 2 (this is due to the viewer trimming the bottom of the reports off)
If this a bug or just something I have not enabled
See screen shot for example.
Thanks
Derb
SL 5, VS2010, VB.NET
I use the Q2 2014 Silverlight ReportViewer in one project of my solution and I am trying to add it to a SL child window in a different project (same solution).
I have all the same references in the project and xaml, no errors are reported at design time, during compile, or at run time.
The reportviewer is recognized because I set the report on a button click and hook the RenderBegin event to set report parameters.
I have deleted and recreated the control in the xaml file, both by dragging it from the toolbox and by just typing it in - intelisense recognized it.
When I run the program I can set the reportviewer.class but RenderBegin is not hit.
Any Ideas?
I am creating a report where i have multiple pages as output. But while exporting the report to PDF format, i want each page as a separate PDF document. Can it be done or is there any JavaScript or any other method available which i can implement to achieve this functionality.
Please guide through this.
Thank you.
Hello together
As we're setting up a new dev server atm, one of the first thing was trying to get the html 5 report viewer to work.
We started with newest softwares and libraries and therefore it wasn't much of a problem setting up a blank, new web site and adding the necessary stuff for the html 5 viewer and it seem to almost work perfect.
Almost, because where in the test project on my local pc where expand/collapse (+/-) images (SampleReport) is now some kind of arrow up in chrome and nothing in IE (see image attached).
Too, in Chrome I get 404 - not found errors for the images:
GET http://...../api/reports/clients/163505-14ea/instances/155744-0f00/documents/163505-973f163505-89ba/resources/Resources.Expand.png 404 (Not Found)
GET http://...../api/reports/clients/163505-14ea/instances/155744-0f00/documents/163505-973f163511-b5a0/resources/Resources.Collapse.png 404 (Not Found)
GET http://...../api/reports/clients/163505-14ea/instances/155744-0f00/documents/163505-973f163511-b5a0/resources/Resources.Expand.png 404 (Not Found)
I tought it might be the problem that I copied the viewer from version 8 (Q3 I guess) but am using reporting 9 Q1 on the dev server. So I did the upgrade wizard but it didn't help (it did upgrade the viewer's files but it didn't solve the issue). I then did the upgrade wizard on my local machine too to update from v8, probably q3 (where everything worked fine before, especially the expand/collapes images) to q1 15 and what happens? On my local machine now I have the same strange behaviour. It seems that with v9 "some output" has changed...?!?
On Dev server I have WebApi 5.2.3 and tried Newtonsoft.Json 6.0.4 and 6.0.8. On my local machine I have WebApi 5.2.2 and Newtonsoft.Json 6.0.6. So there shouldn't be the problem as everything worked fine there before updating to reporting v9.
I too tried another report (Dashboard) with diagram images in it on the dev server which works fine too.
P.S. I noticed a change in the expand/collapse image path between reporting v8 and v9. Just to mention it.
Therefore I tried the failing image path in the browser and figured out what appears and "how far" I can go... I can until (and with) the id after .../documents where I see an exception trace (http://wm4.webmembers.ch/api/reports/clients/163505-14ea/instances/155744-0f00/documents/163505-973f163505-89ba/).
Everything further give me a 404 error and anything less far gives me:
<Error><Message>The requested resource does not support http method 'GET'.</Message></Error>
I don't know what of all is working exactly and what's not but up to now it seems that this is the only thing which doesn't work right.
Thanks for any tipps and infos!