Hi,
Using the designer (9.2..15.930) to edit the TRDX on different machines causes tiny changes to the measurements as shown in the attached diff screenshot. This is a problem for source control as it introduces differences in the history which are not really relevant. Can anything be done about this?
Hi.
How can I style the square in and the marker in a checkbox? I need to border in the square to be 1px solid black (without the blue shading), and the marker to be black and not blue, as in the picture in the attached file.
The report is exported to pdf (where the picture is captured)
Hello Telerik,
I've been trying to set up a ReportsController, a WebApi and a view that all talks together. My view is in another project than my ReportsController and WebApi, since they are going to be deployed two different places.
I have followed your guides
- http://www.telerik.com/help/reporting/html5-report-viewer-embedding.html
- http://www.telerik.com/help/reporting/telerik-reporting-rest-host-http-service-using-web-hosting.html
- http://www.telerik.com/help/reporting/telerik-reporting-rest-implementing-http-service.html
Where I have made sure it worked (by first having the view in same project as the ReportsController and WebApi)
Now that I've split it up in two projects, I get the following warning
"Message": "No HTTP resource was found that matches the request URI 'http://localhost:49375/api/reports/clients'.",
"MessageDetail": "No type was found that matches the controller named 'reports'."
In the Global.asax.cs file, the following lines have been added (just under the AreaRegistration)
GlobalConfiguration.Configure(WebApiConfig.Register);
ReportsControllerConfiguration.RegisterRoutes(GlobalConfiguration.Configuration);
What am I doing wrong?
Generate report fault:
No runtime item is defined for MyProject.Report1 item System.NotImplementedException: No runtime item is defined for MyProject.MyReport1 item
at Telerik.Reporting.Processing.ItemFactory.Create(Object itemDef)
at Telerik.Reporting.Processing.ReportProcessor.ProcessReport(ReportSource reportSource, IRenderingContext context)
at Telerik.Reporting.Processing.ReportProcessor.ProcessReport(ReportSource reportSource, Hashtable deviceInfo, IRenderingContext context)
at Telerik.Reporting.Processing.ReportProcessor.ProcessAndRender(String format, ReportSource reportSource, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)
at Telerik.Reporting.Processing.ReportProcessor.ProcessAndRenderStateless(String format, ReportSource reportSource, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)
at Telerik.Reporting.Processing.ReportProcessor.RenderReport(String format, ReportSource reportSource, Hashtable deviceInfo)
at MyProject.ReportService.Export(ParameterReport param) at BR01Report.BR01Report.StartProcess()
Whats mean message: No runtime item is defined for... ?
Hi,
i want change icon resource collappse in reporting view, can you support me!
you can see attach files collapse, and i want change to file collapse-change
thanks!
Hi,
I'm using WPF with visual studio 2015.
I'm trying to display a basic report in a wpf telerik report viewer control.
I created the report Test.trdx using Report Designer Q3 2013 witch seems to be working fine in Preview mode.
1) I tried to connect the report viewer to display Test.trdx using visual studio 2015, however in report viewer properties, when clicking on Report Source -> New
I receive the following message box from visual studio 2015 "No types are available for you to add to this collection".
2) I tried to connect the report viewer to display Test.trdx programmatically as follow but the report is not displayed:
Telerik.Reporting.UriReportSource uriReportSource = new Telerik.Reporting.UriReportSource();
uriReportSource.Uri = "C:\\WorkingDir\\Reporting\\Test.trdx";
reportViewer.ReportSource = uriReportSource;
reportViewer.RefreshReport();
Why am I receiving the message box error in (1) and why telerik report viewer is not displaying Test.trdx in (2)?
Thanks
Sam
Hi!
My customer has some strange requirement. From the ReportViewer (WPF) window he wants to click a button, then page one gets printed 4 times and all other pages from page two onwards should be printed 2 times. How can I achieve this with Telerik reporting?
Regards
Heiko
I have this HTML code:
@(Html.TelerikReporting().ReportViewer()
.Id("reportViewer")
.ServiceUrl(Url.Content("~/api/reports/"))
.TemplateUrl(Url.Content("~/ReportViewer/templates/telerikReportViewerTemplate-9.2.15.930.html"))
.ReportSource("Coordinaciones/Report1.trdx", new Dictionary<string, object>() { { "@Daes_id", "DAE011" } })
.ViewMode(ViewMode.Interactive)
.ScaleMode(ScaleMode.Specific)
.Scale(1.0)
.PersistSession(false)
.PrintMode(PrintMode.AutoSelect)
.ParametersAreaVisible(false)