Unplanned
Last Updated: 27 Feb 2024 10:15 by Richard
Created by: Richard
Comments: 0
Category: Reporting
Type: Feature Request
4

I am trying to implement the ISharedDataSourceStorage interface and the SaveAsync method receives a parameter of type SaveResourceModel from which I cannot access the description that the user might have written in the UI.

The support team told me that the FileSharedDataSourceStorage class internally uses a SharedDataSourceDescriptionHelper class for accessing the description. 

Please make the helper class public so that we may also use it when implementing the ISharedDataSourceStorage interface.

Unplanned
Last Updated: 04 Apr 2025 10:39 by ADMIN
Scheduled for 2025 Q2

After updating the Reporting version to v18, some error messages display the <br /> HTML element as text in the HTML5 Report Viewer.  The issue was not present in v17.

Unplanned
Last Updated: 01 Jul 2025 14:32 by Alok Tibrewal
Scheduled for 2025 Q3
I add SubReports from a ReportLibrary project to my main CS report as TypeReportSources in the VS Report Designer. All report types get added automatically by the SubReport wizard with the assembly version which is the Reporting version rather than the version of my custom assembly. This breaks my main report that cannot find the subreports.
Unplanned
Last Updated: 21 Feb 2024 10:58 by Mark

When the Visual Studio Report Designer is used in VS 2022, Custom User Functions declared in the project containing the reports do not appear inside the designer's expression editor.

The functions do work when previewing the report but this issue forces users to type the function calls manually.

Completed
Last Updated: 10 Jul 2024 11:59 by ADMIN
Release 2024 Q2

My PostgreSQL query contains an Integer parameter. In the Standalone Designer, it executes successfully both in design and in preview.

In the Web Designer, the same report is also previewed successfully. When I try to configure the SqlDataSource though, if I run the Execute Query in the final step, the database returns an error stating '...operator does not exist: integer = text...'

If the parameter is String, the query runs fine in design time of the Web Designer as well.

Duplicated
Last Updated: 21 Feb 2024 11:26 by ADMIN

We are trying to upgrade our front end to Angular 17.   When we set the telerik version to 17.2.23.1114, none of the reports open and we are getting the method not found error. 

This is the configuration in our telerik report project which runs .NET 6.

<PackageReference Include="Telerik.Drawing.Skia" Version="17.2.23.1114" />
<PackageReference Include="Telerik.Reporting.Cache.StackExchangeRedis.2" Version="17.2.23.1114" />
<PackageReference Include="Telerik.Reporting.Services.AspNetCore" Version="17.2.23.1114" />

Unplanned
Last Updated: 20 Feb 2024 20:44 by Steve
Created by: Steve
Comments: 2
Category: Reporting
Type: Feature Request
1

A search feature in the report editor would be very useful - being able to find all report components/items with any property containing input search text. An added bonus would be having a filtered or highlighted view of the properties of result items, indicating matches.

Being able to find expressions and other properties where some name/value is being used is a very helpful benefit.

UI functionality like that of the search in the Solution Explorer of Visual Studio, with a filtered hierarchical tree structure result view could work well, otherwise a separate results list might be good too.

Completed
Last Updated: 10 Jul 2024 10:00 by ADMIN
Release 2024 Q3

HTML5 Report Viewer installation resources contain an old version of the Kendo blueopal theme - C:\Program Files (x86)\Progress\Telerik Reporting 2024 Q1\Html5\ReportViewer\styles.

Please update the kendo stylesheets to the Kendo version the report viewer currently uses.

Unplanned
Last Updated: 09 Feb 2024 08:27 by Peter
Created by: Peter
Comments: 0
Category: Reporting
Type: Feature Request
2
Please add support to the Barcode report item for SSCC barcode.
Completed
Last Updated: 12 Mar 2024 17:19 by ADMIN
Release 2024 Q2
Created by: Jacek
Comments: 2
Category: Reporting
Type: Bug Report
2

After installing the latest version, the WebServiceDataSource wizard does not send query parameters.

When the report is previewed, the WebServiceDataSource performs the request correct and the expected result is returned.

 
Unplanned
Last Updated: 04 Mar 2024 11:46 by Dan

I have a table with a detailed group with PageBreak set to 'After' and a crosstab inside the table with a row group that also has PageBreak set to 'After'. The pagination is respected in the preview of the designer, however, when exported to XLSX, there is only one worksheet generated.

If I remove only the PageBreak of the detailed table group, there is no pagination and the generated worksheet is only one.

If I remove only the PageBreak of the crosstab row group, there is pagination and the generated worksheet is correct in number. However, the content is not split as expected among the sheets.

If I make the detail table group static and remove its PageBreak, the pagination and the worksheets of the Excel document are as expected.

Unplanned
Last Updated: 05 Feb 2024 09:19 by Muhammad

When the Windows Accessibility -> Text size setting is scaled up, the text in the WinUI report viewer is not displayed correctly. That is, the text is scaled up according to the Windows setting but the items containing the text do not grow and parts of the text are truncated.

Completed
Last Updated: 12 Mar 2024 17:22 by ADMIN
Release 2024 Q2
Tetelik Reporting uses SKFontManager.Default.MatchTypeface to resolve private fonts. This works fine on Windows, but crashes when run on Linux (Ubuntu 22.04) with the default Skia graphics engine.
 
The issue is a known problem for Skia and Skiasharp.

It looks like the function MatchTypeface is deprecated and was removed with this Skiasharp PR.
Completed
Last Updated: 19 Mar 2024 16:14 by ADMIN
Release 2024 Q2
Created by: Kalli Kaldi
Comments: 1
Category: Reporting
Type: Bug Report
1
Telerik.Reporting.Pdf.Fonts.TrueType.FontProgram.GenerateSubSet throws NullReferenceException when exporting to PDF with Skia. The problem occurs when trying to resolve OpenType(.otf) font, and FontEmbedding is set to "Subset". The bug occurs for both installed and private fonts.
 
Recommended workarounds are to set FontEmbedding option to "Full" or to use TrueType fonts.
Unplanned
Last Updated: 06 Feb 2024 14:37 by ADMIN

We are implementing Telerik Reporting in our ASP.NET hosted Blazor WASM application (using .NET 6).
So far we based our implementation on the following sample: https://github.com/telerik/reporting-samples/tree/master/BlazorViewerAndDesignerExample, using a DesignerController which derives from ReportDesignerControllerBase.

As described in the following forum post, we require to add an HttpOnly Cookie to the UserIdentity.Context.
The cookie is to be used for authentication in the apicontroller of the WebServiceDataSource.
https://www.telerik.com/forums/pass-user-claimsprincipal-from-reportscontroller-to-webservice-datasource-controller 

So far we were able to add the cookie to the user context for most endpoints that request data from the WebServiceDataSource, except for a single endpoint.
The HTTP Post endpoint '/
data/model' (TelerikDesignerController.GetDataModel(DataSourceInfo dsi)) can not be overriden in the derived controller class.
This causes an error when the WebServiceDataSource is used in the a report at design-time in the WebReportDesigner.

It should be possible to override all public endpoints of the ReportDesignerControllerBase in my opinion.

Also the RenderLiveItemAsync() method should be marked 'protected virtual' so it can be overridden in a derived class.
Currently we had to override every unique render method (RenderGraphAsync, RenderShapeAsync, ...) individually, while we could achieve the same if we could override the RenderLiveItemAsync method.

KR,

Lennert

Unplanned
Last Updated: 31 Jan 2024 16:21 by SHING SHUN
Created by: SHING SHUN
Comments: 0
Category: Reporting
Type: Feature Request
4
The snap to grid lines functionality of the Web Report Designer would be more helpful if we could see the snap grid like in the Standalone and Visual Studio Designers
Unplanned
Last Updated: 30 Jan 2024 16:10 by Matthew
If the Blazor Report Viewer is integrated into a .NET 8 Blazor Web App project and a NavLink is used to navigate to the report page, clicking the NavLink again after the page is loaded, breaks the viewer's styles. 
In Development
Last Updated: 23 Jul 2025 15:13 by ADMIN
Scheduled for 2025 Q3

The Web Report Designer does not entirely comply with CSP standards, necessitating the use of the 'unsafe-eval' directive in our CSP policies to enable its functionality.

This directive poses significant security risks and undermines the purpose of implementing CSP in the first place. Please remove this requirement.

Unplanned
Last Updated: 29 Jan 2024 11:28 by Lennert

If a WebServiceDataSource has inline JSON data for design-time preview, this inline data is not used when the report is designed with the Web Report Designer. Instead, the data is requested from the service both during design time and during live preview.

On the other hand, the Standalone Report Designer works as expected. I.e. inline data is used during design time and live data from the service is used during the preview.