Unplanned
Last Updated: 13 Apr 2022 09:48 by Ankita
When exporting to a DOCX file, the font size when set in px(pixels) is not calculated correctly If the machine settings are higher than the default 96 DPI (100%).
Unplanned
Last Updated: 10 Jul 2023 14:45 by Steven

If I use Microsoft.AnalysisServices.AdomdClient assembly with version 13 or higher, I receive the following exception:

An error has occurred while processing Report 'Report1':
Unable to establish a connection to the database. Please verify that your connection string is valid. In case you use a named connection string from the application configuration file, make sure the name is 
correct and the connection string settings are present in the configuration file of your application.
------------- InnerException -------------
Attempt by security transparent method 'Telerik.Reporting.Adomd.AdomdProviderFactory.CreateConnection()' to access security critical method 'Microsoft.AnalysisServices.AdomdClient.AdomdConnection..ctor()' 
failed.
 
Assembly 'Telerik.Reporting.Adomd, Version=16.0.22.119, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' is marked with the AllowPartiallyTrustedCallersAttribute, and uses the level 2 security 
transparency model.  Level 2 transparency causes all methods in AllowPartiallyTrustedCallers assemblies to become security transparent by default, which may be the cause of this exception

With earlier versions, the data source works as expected.

Unplanned
Last Updated: 11 Apr 2022 14:52 by Shannon
Created by: Shannon
Comments: 0
Category: Reporting
Type: Feature Request
1

When a report is saved in the Web Report Designer, a popup appears confirming that the report was successfully saved. However, it is visible for far too long and blocks users during this time.

This feature request is to add an 'ok', 'hide' or 'close' button to these types of popups so the user can dismiss it.

Thank you,

Shannon

Unplanned
Last Updated: 27 Apr 2022 09:11 by ADMIN
Created by: Marvin
Comments: 3
Category: Reporting
Type: Bug Report
2

In Web Report Designer I added a List to my report groupHeaderSection and then couldn't delete it. It switched it to a TextBox. When trying to delete the TextBox the number of the box increments up/down.

There are times when I can't drag it to a different location.

Unplanned
Last Updated: 08 Apr 2022 13:38 by Ankita
Created by: Ankita
Comments: 0
Category: Reporting
Type: Bug Report
3

In some cases, the word export will cut off the report content with a blank page.

Completed
Last Updated: 11 May 2022 10:24 by ADMIN
Release R2 2022

The XAML rendering extension, used by the WPF Report Viewer, by default checks for invalid characters while writing the XAML page contents. When the data that will be rendered on the page contains invalid Unicode characters, an exception is thrown and the report is not rendered.

The current solution is to introduce a UserFunction that parses  the string contents and strips the invalid characters, but implementing and maintaining this approach requires more efforts from the developer.

An option in the XAML Device Information Settings that disables the check for invalid characters, would work in most scenarios without having to write a dedicated UserFunction. By default this option will preserve the current behavior, i.e. the characters checking will be performed, but the developers will have the ability to disable it on their own discretion.

Completed
Last Updated: 11 May 2022 10:26 by ADMIN
Release R2 2022

Issue #1: In WinUI3, for Telerik Report Viewer, when we have a link to URI to open in a new window, it is not working correctly.

Here is a setting in a demo report (Report Catalog): 

When clicking to link in control on runtime, we are getting the following error:

This looks like a bug.

 

Issue #2: Our scenario is the following: We will have some custom links in a report like, "MyApp:Customer/TEST". When we click on that, we need to send that link to our WinUI app, which will let's say navigate to a Customer page after it is clicked in a report. Due to Issue #1, we were not able to test it. Even when Issue #1 is resolved, what is a good way for us to handle the current scenario? I don't want to refresh the report when some link is clicked.

 

Issue #3. We might have the HTML Text box in a report. When it has a link, it is not clickable. This is another item that looks like a bug.

 

Can you please help to resolve these 3 issues?

Thanks,

 

Unplanned
Last Updated: 04 Apr 2022 12:38 by Todor

When I display the page count in PrintPreview mode with the following function, the result depends on the value of the Report property SkipBlankPages and may be wrong:

= PageCount("Report1", 1)

If I use only:

= PageCount

the result is correct.

The linked PageCount video demonstrates the problem.

Unplanned
Last Updated: 04 Apr 2022 11:32 by Todor

When a Report Parameter is Nullable, and the Null value comes from the data source, for example, from a JsonDataSource assigned to the parameter AvailableValues, the Desktop viewers don't recognize this value and show an exception that the parameter value is not valid. You need to check the NULL checkbox to set the parameter value to Null.

In the Html5 Viewer, the same is working as expected, and the Null value from the data source is correctly set directly to the parameter.

The link to the Nullable Parameter video demonstrates the issue.

Unplanned
Last Updated: 01 Apr 2022 08:55 by Christian

Currently, when GroupFooterSection.PrintAtBottom is set to True, all subsequent sections will be moved to the next page. For that reason, the Report Footer also moves to another page even when its PrintAtBottom is True and both sections can fit on a single page.

If I set the Group Footer PrintAtBottom to False, it will be printed just below the Detail section, which may leave unwanted blank space between the Group Footer and the Report Footer.

I think that it is more intuitive to have both the Group Footer and the Report Footer printed at the bottom of the last page in this scenario, with the Group Footer just above the Report Footer.

Unplanned
Last Updated: 07 Mar 2025 15:00 by Erik
Created by: Franz
Comments: 4
Category: Reporting
Type: Bug Report
7
The WebReportDesigner overrides the global resources used by the kendo-UI theming used in blazor-UI as well. This occurs as soon as the WebReportDesigner gets loaded/rendered. Before, the theming is just fine and works. Then I navigate the ReportDesigner page and sizes, margins, colors, etc. change and stay changed for the lifetime of the client's app session.
Completed
Last Updated: 09 Nov 2022 13:31 by ADMIN
Release R3 2022 SP1

Boolean parameter checkbox is with a small size in the HTML Viewer with Kendo SASS theme created with ThemeBuilder.

The current workaround is to use the following CSS to set the width and height of the checkbox:

.k-checkbox{
   width: 16px !important;
   height: 16px !important;
}

 

Under Review
Last Updated: 06 Apr 2022 10:34 by ADMIN
Created by: Hannah
Comments: 0
Category: Reporting
Type: Feature Request
3

Please add DropDownTree and/or TreeView as single- and multi-value parameter editors to accommodate Hierarchical data. It would be nice to have them out-of-the-box when available values come from a hierarchical/self-referencing table(s), but I would be happy if they could be integrated as Custom Parameter Editors. I was able to render and populate the dropdowntree with checkboxes, pass the correct selected values, but the 'Preview' button would never enable upon selection. Also, the dropdowntree's AutoClose(false) was not recognized. I know this can be achieved outside of the report viewer, but sometimes that method disrupts the layout and flow of the reporting view.

 

Completed
Last Updated: 11 May 2022 10:24 by ADMIN
Release R2 2022
If you try to export a report that contains an SVG image, A generic error occurred in GDI+  error will be thrown when you try to export the report to XLSX under Azure.
Unplanned
Last Updated: 01 Apr 2022 09:18 by ADMIN

This is the outcome in the Standalone designer:

This is the outcome in the WPF viewer:

 
Unplanned
Last Updated: 16 Mar 2023 12:41 by ADMIN
Created by: Patrick
Comments: 2
Category: Reporting
Type: Feature Request
15

Hi Team,

I know it's a bit early to be asking for this, but I wanted to get a feature request on the backlog so it's trackable.

Currently, you already have a ReportViewer for WinUI3. This means you have a good head start for a ReportViewer that can be used in a .NET MAUI project and have native Windows support.

I'm mostly concerned about having support on a Mac, not the mobile platforms. So if you can build a MacCatalyst ReportViewer, you can cover a good portion of developers who are hoping MAUI can give them desktop support across platforms.

Thank you,

Patrick

Tip: If you use SkiaSharp or Maui.Graphics for rendering, you can get automatic cross-platform support everywhere for free

Declined
Last Updated: 04 Apr 2022 13:39 by ADMIN
Created by: Robert
Comments: 1
Category: Reporting
Type: Feature Request
0

Ability to split sections for use in Conditions and Formatting.

Example: Detail split into Detail-A and Detail-B where either or both may display based on a condition defined at the Section Split level.

For Crystal Report users (myself since 2008) this is a very important feature.

It allows a single report be used for detail or summary reporting as well as multiple conditions for display.

This is an example from CR:

Unplanned
Last Updated: 28 Mar 2022 09:33 by Taylor
I use <strong> to make part of the text in an HtmlTextBox bold. When my report is rendered in PDF under Linux, the bold text overlaps the normal text. The issue persists even when I put the text with different styles in separate <span> elements.
Completed
Last Updated: 26 Oct 2023 07:00 by ADMIN
Release 2023 R3

It would be very useful if the report parameters of all the HTML5-based report viewers become accessible from the report viewer widgets.

For example, we are currently working on a report that has a custom button that sends the current parameters to an API and "signs" the current report (e.g. saves a string in the database and displays it afterward in the report).

We would like to validate if the currently shown report matches the report parameters but are unable to find a valid solution for this scenario.
Unplanned
Last Updated: 24 Mar 2022 11:28 by Steven

I have a TextBox that is rotated at 270 degrees. Its width in some cases is not enough to accommodate the incoming value. I expected it to grow vertically (i.e. in width) in this case. However, its width didn't grow. It just cut the content.

I noticed that if I increased the height of the TextBox, the content was wrapped horizontally.