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
InstanceReportSource
18.
{
19.
ReportDocument = book
20.
};
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!
I'm using the HTML5 Report Viewer. Everything seems to be working fine but when I refresh the report using the refresh button on the Report Viewer, I get a 404 error. From what I saw in Fiddler it looks like when I hit the refresh button its called the DeleteInstance action on the base controller. The call looks like this mysite/api/reportsdata/clients/154459-b20c/instances/163052-40f7 I'm hoping someone can shed some light on this issue.