Unplanned
Last Updated: 04 Dec 2019 10:13 by ADMIN
Created by: Neli
Comments: 0
Category: Reporting
Type: Bug Report
2

When you try to send the report through the SendMailMessage functionality but an exception is thrown, the report will disappear. If you click on Refresh and try again with fake data, the exception will be thrown but the report will remain. If you prefer to refresh it automatically, you can use the error event:


var viewer = $("#reportViewer1")
.telerik_ReportViewer({
    serviceUrl: "api/reports/",
    reportSource: {
        report: "Report Catalog.trdp",
    },
    error: function (e, args) {
        console.log("This event handler will be called after a page of the report is ready.");
        console.log("The error message is: " + args);
        viewer.refreshReport();
    },
    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
    scale: 1.0,
    enableAccessibility: false,
    sendEmail: { enabled: true }
}).data("telerik_ReportViewer");

Unplanned
Last Updated: 23 Jan 2020 09:36 by ADMIN
If you click multiple times fast on the Next button of the viewer while on the penultimate page, an error may occur. The error indicates that a page with a page number that does not exist in the report - 'pageCount+1' is missing. The error message persists even if you navigate to other pages. The issue occurs in SINGLE_PAGE pageMode.
Completed
Last Updated: 26 Feb 2020 16:26 by ADMIN
Release R1 2020 SP1
If you add the Telerik.WebReportDesigner.Services package to a working .NET Core 3.1 project using Telerik Reporting, the built fails with System.Reflection.ReflectionTypeLoadException
Unplanned
Last Updated: 05 Feb 2020 14:18 by ADMIN

The following exception occurs when you attempt to add a Html5 Report Viewer from the VS item template in a project that already contains a CLR report:

"Error: Fail to add project reference System.Runtime.InteropServices.COMException (0x80004005): Adding 'WebApplication2' as a project-to-project reference would cause this project to reference itself. at VSLangProj.References.AddProject(Project pProject) at Telerik.Reporting.Vs.Common.ProjectManager.TryAddProjectReference(Project projectToReference)"

The viewer is still added successfully and displays the report.

Completed
Last Updated: 27 Mar 2020 15:13 by ADMIN
Release 2020 R1 SP2 (Latest Internal Build)
The Context Menu does not pop-up when you right-click on a Report Parameter in the Report Explorer of the designer.
Unplanned
Last Updated: 29 Mar 2021 10:10 by ADMIN
The JsonDataSource does not accept parameters, which doesn't allow filtration, for example, based on a Report Parameter value.
Completed
Last Updated: 30 Mar 2021 12:39 by ADMIN
Release R1 2021 SP2
Created by: Todor
Comments: 0
Category: Reporting
Type: Bug Report
2
SignalR jQuery plugin fails to load when the Angular Report Viewer is present in the same application. Removing the following lines from each instance in Reporting package resolves the issue but may introduce other issues:
 
window.$ = jquery;

window.jQuery = jquery;

For example, removing the above lines results in the error '$.throttle is not a function' in the 'continuous scroll' mode of the viewer. The workaround is to use the 'single page' mode.

 

Completed
Last Updated: 13 May 2020 12:49 by ADMIN
Release 2020 R2
We are hosting our ASP.NET Core Application in a Linux Container on Azure. When we export the report in Linux there are additional spaces at the end of each paragraph. However, when we export the report on Windows the carriage return appears fine. 
Unplanned
Last Updated: 29 Mar 2021 09:57 by ADMIN
Created by: Timothy Lee Russell
Comments: 0
Category: Reporting
Type: Feature Request
2
Source control is already doing this for me - but it also picks up the change so every time a .trdp.bak file gets created, I have to manually remove it.

It would be nice to add an option to the settings that specifies whether or not the .bak file should be created.
Unplanned
Last Updated: 22 May 2025 09:04 by Suhail
Grouping Report Export to excel Expand and collapse option is missing in Excel, Please add this feature.
Unplanned
Last Updated: 18 Jan 2022 13:27 by ADMIN
Created by: SPARE GmbH
Comments: 0
Category: Reporting
Type: Bug Report
2
If you introduce a Column group in a Crosstab and set its PageBreak to After, it won't be respected.
Completed
Last Updated: 18 May 2020 17:57 by ADMIN
Release 2020 R2

Steps to reproduce:

1. Create a Blazor application;

2. Add Teleri.Reporting NuGet package;

3. Add Telerik.WebReportDesigner.Services Nuget package -> some of the app dependencies are broken.

 

Solution:

Refer the .NET Standard DLLs from C:\Program Files (x86)\Progress\Telerik Reporting <Version>\Bin\netstandard2.0.

Unplanned
Last Updated: 31 Mar 2020 10:16 by ADMIN
It would be really helpful if you add a processing and rendering mode which will cut off a lot of interactivity and flexibility issues in favor of faster processing and lower memory consumption.
Unplanned
Last Updated: 22 Apr 2020 07:08 by ADMIN
Created by: StillLearnin
Comments: 0
Category: Reporting
Type: Feature Request
2

As a full time developer I'm constantly switching between open documents.

It would be very nice if the Report Designer would support the standard Ctrl+Tab keyboard shortcut for switching between open tabs.

Pending Review
Last Updated: 22 Apr 2020 08:03 by Sascha
The timestamp field of MSSQL databases is recognized as byte[]. When using the Query Builder of the SqlDataSource wizard of the Report Designers, it tries to convert this byte[] to an image, which fails as the field is not a valid image. This doesn't obstruct the set-up of the data source. The query can also be executed successfully.
Under Review
Last Updated: 30 Jun 2020 13:26 by ADMIN
When i use "MultiSelectEditor" with parameters that have MultiValue set to true and have provided AvailableValues, it doesn't handle them. Only when i use those parameters with "MultiValueEditor" then it handles them even though "MultiValueEditor" is used with parameters that have not provided AvailableValues.
Completed
Last Updated: 26 Mar 2021 16:50 by ADMIN
The current selection of the Properties Area state is lost on selection change. Restoring the Properties Area state after report item selection will improve the Web Report Designer usability.
Completed
Last Updated: 26 Mar 2021 16:56 by ADMIN
Facilitate the Web Service Data Source initial setup or editing in Web Report Designer with a user-friendly wizard. 
Unplanned
Last Updated: 26 Mar 2021 17:01 by ADMIN
Created by: Peter
Comments: 0
Category: Reporting
Type: Feature Request
2
Facilitate the Map item initial setup in Web Report Designer with a user-friendly wizard. 
Unplanned
Last Updated: 15 Jun 2020 08:32 by ADMIN
If I set the column width of a Table with Bindings, everything works as expected when the Table has data. When there is no data in the Table and only the row headers are displayed, the Binding of the width is not respected.