
I have an MVC ASP.Net 4.61 application. I have a report defined with a parameter and a filter. When I view the preview in the designer, the default parameter works fine and the report is filtered, but when I run the application and it is using RenderReport it appears that the filter is passing a null value to the query so no data is returned. If I put the parameter in a text box I see the Id. My id's are GUIDs stored in a varchar field. If I take off filtering it shows multiple records properly.
var PDFSource = new TypeReportSource(); PDFSource.TypeName = typeof(rptEmail).AssemblyQualifiedName; PDFSource.Parameters.Add(new Telerik.Reporting.Parameter("Id", id)); var ReportProcessor = new ReportProcessor(); var result = ReportProcessor.RenderReport("PDF", PDFSource, null); string PDFPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "App_Data", "Test.pdf");
File.WriteAllBytes(PDFPath, result.DocumentBytes);

Is it possible to set ObjectDataSource value at runtime?
We're trying to generate PDF's based on reports with data supplied at runtime. The structure of the object will always be the same but the values need to vary as this is supplied to the API.
For example:
public IActionResult GetReport(ReportData data) { var reportProcessor = new Telerik.Reporting.Processing.ReportProcessor(); var reportSource = new Telerik.Reporting.UriReportSource(); var deviceInfo = new System.Collections.Hashtable(); reportSource.Uri = Path.Combine("Reports", "Report.trdp"); // Need to set the value for the objectdatasource here somehow? Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", reportSource, deviceInfo); return new FileContentResult(result.DocumentBytes, "application/pdf") { FileDownloadName = "QuestionnaireReport.pdf" }; }I have a report, that shows lots of information on table. The table has many rows, that it takes extra paper. In this case I don't want to show additional rows after row #5(or row #10).
Question is how to hide those extra rows in Telerik Report Designer?
Hi,
I'm currently trying out Telerik reporting with Angular and see if it fits best with our .Net Core project. When I tried to add TelerikReportingModule in the app.module file, the existing jquery functions all became undefined. Then I noticed our supposed to be jquery version was overwritten by kendo's version of jquery. Is there a way we cpuld disable this and still be able to use the Telerik Reporting?
Found this link but I couldn't find anything similar for angular / .net core.
Thank you!

public class OECReport : Telerik.Reporting.Report{ public static int DateToInt(DateTime date) { return date.Subtract(new DateTime(1899, 12, 31)).Days; }}Hello Telerik Team,
I work with an older version of Telerik Reporting (12.2.18.912) and recently saw that a trial version of a newer version (13.0.19.222) is still installed.
I had installed it before I got my license. I checked in the Progress Control Panel, if I could uninstall the trial version, and couldn't find how.
The only option I have is to "Update To Purchase".
How could I remove the trial version?
Thank you in advance!
Best regards,
Tamara