Hi Everyone,
I've recently upgrade telerik reporting to the last version. I'm currently using the report viewer in a .net core application on linux. Since the last version the print option and the pdf export doesn't work anymore.
On the front end i'm getting
telerik reporting The header contains invalid values at index 0: '<null>'
and on the server server side I'm getting an exception with
telerik.Reporting.Pdf.Fonts.TrueType.FontDataProvider
I've set the appsettings to use the GDI and still have the system.drawing.common set at 6.0 for now. I never had any issues prior to this update with the same settings. Anyone had this issue before? All other export works perfectly fine, only the pdf and print options have issues.
Thank you very much,
Guillaume
Hi all,
I have the following case with Telerik Reporting. I have a list which is fed with some data. The number of items may vary from 0 to practically unlimited. I want to show up to 3 records on a line. New records should go on a new line in the report. I used this article as a reference but I still cannot solve it elegantly as the number of elements may be different each time -> https://docs.telerik.com/reporting/knowledge-base/how-to-create-multi-column-report---across-the-page-and-then-down
I'm sending a sample report as a reference. Does anyone have ideas on how to handle this? Some of the problems I encounter are:
Regards,
Krasi
Hello All! I am having some difficulties debugging an issue with the ReportViewer not showing the rendered Report. The Output states that the report was rendered in X seconds. My report xaml is as follows:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:tr="http://schemas.telerik.com/wpf" x:Class="FRAC_FLOW.TestReport"
Title="Report Viewer Window">
<Grid x:Name="LayoutRoot">
<Grid Margin="20" >
<Grid.RowDefinitions>
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<tr:ReportViewer Grid.Row="0" x:Name="ReportViewer1"/>
</Grid>
</Grid>
</Window>
I am setting the source and parameters in the constructor:
public TestReport() { InitializeComponent(); Telerik.Reporting.Parameter parm = new Telerik.Reporting.Parameter { Name = "JobId", Value = "7215" }; Telerik.Reporting.Parameter parm1 = new Telerik.Reporting.Parameter { Name = "Date", Value = DateTime.Now.ToShortDateString() }; var reportSource = new UriReportSource(); reportSource.Uri = new Uri("Reports/ReplacementParts.trdp", UriKind.RelativeOrAbsolute).ToString(); ReportViewer1.ReportSource = reportSource; ReportViewer1.ReportSource.Parameters.Add(parm); ReportViewer1.ReportSource.Parameters.Add(parm1); ReportViewer1.RefreshReport(); }
Hello,
I have two questions,
I'm using 17.0.23.118 version of Telerik report in ASP.net webform. I used Horizontal line(Shape) to separate the rows in DetailArea and PageHeader area.
I want, it should visible in web view but want to hide in exported .xlsx file. Currently its visible in both places.
Please help me out in this.
I'm trying to create a Report that has a dynamically generated DataTable as its DataSource.
I’ve programmatically placed a DetailSection on the Report, and added a TextBox for each column of the DataTable to the DetailSection.
The TextBoxes are databinding, but I can’t figure out what the proper Expression would be to access the column data for each TextBox.
The ReportItem.DataObject.RawData for each TextBox is a DataRowView.
In the Immediate window in Visual Studio, I can access the column data from within the TextBox DataBinding handler with the following:
((System.Data.DataRowView)(((Telerik.Reporting.Processing.TextBox)sender).DataObject.RawData))["ID"]
Please tell me what Expression would access the column data.
1. it possible to create telerik report programmatically in asp.net core?
2. I need to create teleik report programmatically in asp.net core and to display in html5 viewer?
can you any let me know ans.
Question Details
I have multiple expressions which redo the same calculation several times.
Part of the calculation uses an aggregated result of a field.
Is there a way to simplify and increase the maintainability of the report by creating a calculated field for a group? This field would be used multiple times in sub-groups and in the detail section.
Please note that I do not have the power to update the source code and because of this I can not create "custom functions".
I've tried to store the calculated value in an invisible text box but I can't seem to recall this value to be used in subsequent text boxes.
Very Simplified Example
Let f(x) = Avg( Field.x ) <-- How do I set this in the group header so I can reference it in the detail section?
Let textBox7.Value = "Distance From COM: " + Abs( f(x) - Field.x )
Note: If this is not possible across groups, but it is within a group please let me know. This would also greatly simplify the maintainability of my report.
Thank you for taking the time.