Hi all,
Is it possible to pass object with set of fields to sub report. I was going to load all data in main report and pass some parts to subreport but there are only simple types for parameters and no object type. is it possible via report designer or I have to convert to visual studio? report is quite complex
thanks in advance
I have a report/Invoice that was made using the Report Designer, so it's in trdp format. It is server up via a MVC vb.net RESTful reporting service. Despite countless setbacks due to the Telerik Report dynamic limitations, I actually have it working, but there it one final nail that needs to be pounded into the coffin...the Invoice Logo. It, much like every things else in our system, is not static. It needs to be set, to correspond to what company happens to be running the Invoice with that particular request.
The million dollar question, how does one dynamically set a picturebox in a trdp report via a call to a RESTful reporting service?
I have a sinking feeling this is going to involve the ReportPackager. The Reports Controller is very simple:
Namespace Controllers
<
RoutePrefix
("api/Reports")>
Public Class ReportsController
Inherits ReportsControllerBase
Protected Overrides Function CreateReportResolver() As IReportResolver
Dim reportsPath = HttpContext.Current.Server.MapPath("~/Reports")
Return New ReportFileResolver(reportsPath).AddFallbackResolver(New ReportTypeResolver())
End Function
Protected Overrides Function CreateCache() As ICache
Return Telerik.Reporting.Services.Engine.CacheFactory.CreateFileCache()
End Function
End Class
End Namespace
Our main project is a Asp.NET core 2.0 MVC project that targets .NET Core 2.0. We would like to add Telerik reporting to our project.
Unfortunately I cannot do that directly since the Telerik report engine is using GDI+ and therefore the project must target classic .net. This means I must do this in a separate project so I can not re-use services like authentication on the controllers etc. Second and more important, our project must run on linux which the reporting service can not. Also we would like to dynamically render the report viewer pages and not be depended on static html pages like the Html 5 report viewer. Because of this limitations Telerik reporting is now not an option for us.
So my questions is will Telerik reporting get full .net core support in the future so we can target .net core too?
Best Regards,
Michel
Hi
It works in visual studio more in linux happens the error "Unable to get report parameters."
Has anyone had this problem yet?
Thank you
Marcelo
I would like to create a subgroup with a clustered graph. The first group will be the columns headers and the second one, the description in my first column.
The axis will be represented this way :
X - 2 groups
Y - The corresponding value between the 2 groups
I am using Telerik 2016.
English is not my first language, but I think that the image in attached files sums what I am trying to do.
Thanks in advance!
Hello,
I want to create a website project with asp.net.
And now I want to implement a ReportViewer in my project.
But when I drag and drop a reportviewer from the toolbox to the
MainContent of a masterpage, i get an error shown in the attached screenshot.
I can ignore this error and click OK, but when I want to set a ReportSource
there comes another warning.
Perhaps it is related to each other.
Is it not possible to drop a reportviewer to a MainContent of a masterpage?
Hi,
While im selecting "Select All" option in the filter, then its showing the below error.
Unable to get report parameters.
An error has occurred.
The 'ObjectContent`1' type failed to serialize the response body for content type 'application/json; charset=utf-8'.
We tried to update Newtonsoft.json to latest version then
also we are getting the same issue. We are having 200 customers only in that
filter.
Telerik Version 13.0.19.22.
Can anyone please help me on that?
thanks
Kesavan
We have a multi-tenant application, and the same report is designed little differently per client specifications. My question, is if there is a way to use Microsoft Azure or some other Blob service to store the Tenant specific TRDX files, and can be downloaded on demand based on incoming request?