Hi everyone!
I'm trying to design a report in the Visual Studio integrated designer but I don't quite understand how to use the table object...
I have a query in a DAO object in my program that is doing a very complicated transaction to fetch the necessary data to plug into the table...
how can I either add row by row the data with a variable number of rows or bind something like a datatable object to the table in the report?
the wizard asks me to input sql connection strings and stuff but I don't want to do that. I have a class that is taking care of the interactions with the various databases and tables needed to build the full report...
I used JasperReports before and I could just pass to the report builder a hashmap (something like a dictionary in C#) with the object as key and the value bound to that key and it worked flawlessly can I do something like that here too?
Otherwise I may just have to ditch this reporting mechanism and make a jar to launch on the side... I really would love to avoid that because until now the whole telerik suite has been a breeze to work with...
thanks for any help!
Fabio
In a very few specific places in the product my company has built, we are using Telerik Reports in C#.
Report is trying to reach a stored procedure with 2 params: @languageCode and @invoicePaymentReceiptID
Creating a PDF Report however is giving me the below error:
ERROR
Value cannot be null.
Parameter name: type
STACK TRACE
at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at System.Activator.CreateInstance(Type type)
at Telerik.Reporting.Processing.TypeReportDocumentResolver.Resolve(IProcessingContext context, TypeReportSource rs)
DLL VERSION
Telerik.Reporting, Version=9.1.15.731, Culture=neutral, PublicKeyToken=a9d7983dfcc261be
CODE
Telerik.Reporting.Processing.ReportProcessor reportProcessor = new Telerik.Reporting.Processing.ReportProcessor();
System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
Telerik.Reporting.TypeReportSource typeReportSource = new Telerik.Reporting.TypeReportSource();
typeReportSource.TypeName = frmR.reportName;
typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("languageCode", frmMain.language));
typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("invoicePaymentReceiptID", 20421));
//typeReportSource.Parameters.Add(new Telerik.Reporting.Parameter("reportID", tsbReportList.ComboBox.SelectedValue));
Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", typeReportSource, deviceInfo);
It hits in the last line, trying to create the PDF report.
Any ideas on the topic would be much appreciated.
Thank you.
Hi!
I'm not sure if this is the right place to post this. I'm trying to figure out how to implement custom user functions for use with the reporting server. I was successfully able to implement custom aggregate functions as per this documentation: https://docs.telerik.com/reporting/expressions-user-aggregate-functions
However, when attempting to implement custom functions using this documentation, I cannot get it to work: https://docs.telerik.com/reporting/expressions-user-functions
The functions implemented in this way show up for use in the standalone report designer, but when using them they return an error: "function not defined in current scope"
Am I missing something obvious? Any help would be appreciated!
Thanks
Hello,
I am currently working on a project that requires me to generate a report then turn it into a pdf and send it in a email. I currently understand how to generate a report for a report viewer using uriReportSource, but I don't understand how to generate the report in the code behind then turn it into a pdf.
How to localize Rich Text Editor component displayed by the Send Mail Message Dialog in the HTML5 Telerik Report Viewer?
public
sealed
class
MyType
{
public
String FirstName {
get
;
set
; }
public
String LastName {
get
;
set
; }
}
report.DataSource =
new
List<MyType>();
= Fields.FirstName + " " + Fields.LastName
report.DataSource =
new
List<String>();
= ReportItem.DataObject.RawData
Hi all,
We are using Report Web Designer. We have implemented custom storage (IDefinitionStorage). We have implemented SaveDefinition method where it saves the edited report in a custom way.
There can be some validations and save can fail. For this I am just throwing a new Exception.
The question is, which kind of exceptions needs to be thrown so that the message of exception shows in a report designer?
In an attachment you can see that the error message is showing in a general way, and it doesn't show my custom message.
Thanks,
Hello,
I'm trying to test Telerik Report with .NET Core 3.1 and object data source.
The report is working correctly when running from Visual Studio but when I publish and put it in IIS, I see the below error in every binding.
"An error has occurred while processing TextBox 'textBox15': The expression contains object 'OpeningBalanceDate' that is not defined in the current context"
I'm using the report designer and the assemblies that has the object datasource are netstandard2.0
What could be the issue?