My table header is obtained from the incoming data and is not fixed.
So I want to dynamically add Columns and put the content I specify, such as where the picture is circled
But no matter how I adjust it, I can't read my fields.
Even if I use static data for testing, it always tells me
"An error has occurred while processing Table 'table1':
Table Body has 3 rows but 1 are expected."
How should I write report code to achieve the results I want?
A couple of questions regarding tables..
I know how to get a total for a column, but the row shows the cell grids for all columns in that "total" row. Table total row.jpg
Is there a way to suppress that and show text that says Total similar to something like in Preferred table total.jpg It doesn't have to appear immediately below the row.
I also have a need to sometimes charge a sales tax so need something that looks like in Alternate table total.jpg. This would be determined by a field that is in an "Invoice Header" data source.
I don't know how to reference the =Sum(Fields.ShiftTotal) from the table, outside the table
If the total row is a couple of separate boxes, I can then put the tax into a hidden box and display when required.
I guess an alternative would be to have the total in the Invoice Header data source rather than calculated from the Invoice Detail data source
Hi,
I am using Telerik Reporting version 17.1.23.718 on an Ubuntu 22.04 VPS. Initially, I faced an issue where reports were not displayed in the viewer, but I resolved it by adding the System.Drawing.Common
NuGet package to my project.
Currently, the Telerik Report Viewer displays the report correctly, including Arabic text rendered with the Times New Roman font. However, I am facing a problem with the exported PDF and the print preview:
I have attached screenshots to demonstrate the issue.
Please advise on how to resolve this issue.
I have the Angular Report Viewer configurated with the Authorization Token option,
When I preview the report, it works fine, but when I export the report, the page is redirected to https://.../api/reports/clients/29647efbe45/instances/18eaf5b1936/documents/b86a87758c11f7b9cd832a?response-content-disposition=attachment and in this redirection is not including the authorization header
Thanks a lot, Ariel
hello team,
I have a report created in web designer and store the data in the database (binary). Now I want it to become sub report in my master report, I am using UriReportSource, then type the subreport name in the Uri text box, it does not work, it shows it could not find the subreport name, do we have any idea or solution to custom the path or load subreport here?
Thank u.
I'm using the new Angular Report Viewer. My Component allows the user to change different parameters to generate the report. The first time the report runs, everything is fine. When a new set of parameters are selected, requesting the report still shows the report with the initial parameters.
In the prior version, I was able to get this to work by doing this in my ts file:
const v1 = $('#reportViewer1').data('telerik_ReportViewer');
v1.reportSource(requestedReportSource)
v1.refreshReport();
Where requestedReportSource contained the new report parameters.
In the new TelerikReportViewerComponent, I see there' a setReportSource() method, but I'm unable to get the right JSON parameter format to be passed to the method.
Any examples on how to update the ReportSource for the component would be appreciated.
Bob
Hello folks,
I am working on an project that use a .NET 8 Web API as the backend and an Angular frontend to render telerik reports. Everything was working fine until we decided to upgrade Telerik.Reporting.Services.AspNetCore to version 18.3.24.1112
We also updated the following package in our frontend app.
and updated the version from telerikReportViewerTemplate to match the version from our Reporting.Services package from the backend.
Now whenever we try to show any of our reports, we get the error: Could not find stored procedure 'sp_tr_GetInstancesByKey'
Our connection string hasn't changed and when I look at our database I can see these related stored procedures, but not the one mentioned in the error message.
Does anybody know what the problem might be?
Hi,
When i create a table that has either conditional formatting to hide row visibility or uses Data > Bindings to hide row visibility it works well when exporting to PDF.
When exporting to Powerpoint the rows that are supposed to be hidden do not show any data but there is still blank space between the visible rows.
Is there a work around for this or is this a bug?
Thanks
Steve
This is basically a repeat of what other users have asked:
https://www.telerik.com/forums/any-way-to-prevent-auto-loading-when-parameters-are-present
https://www.telerik.com/forums/how-to-disable-report-auto-preview
https://www.telerik.com/forums/how-prevent-report-from-running-on-page-load
The gist of the Telerik team's recommendation is to not provide default values for parameters.
In addition to the rebuttal by the developers (generally speaking, they want to provide default or suggested values to end-users), we have a slightly more generic case. We have users running reports that span months of data. In most cases we have start and end date parameters. The users will sometimes want to see the data from current month AND THEN switch to same month of last year.
They select the start date and the report immediately executes spanning 13 months. The user has to wait until the report is loaded completely to immediately discard the result by setting the end date.
Adding the "AutoRun=false" option would be immensely useful here. Or at least wait for e.g. 5 seconds of user inactivity before executing the report.