Completed
Last Updated: 11 May 2022 10:24 by ADMIN
Release R2 2022
Object Reference Not Set To An Instance Of An Object is thrown when trying to add a new column to a crosstab with merged cells. As a workaround, to be able to add it, you need to unmerge the cell -> add the column -> merge again.
Completed
Last Updated: 09 May 2022 06:28 by ADMIN
Release R3 2021 SP2
After the Report Viewer Angular component is destroyed, keep alive requests are being sent to the server, even though the viewer is removed from the DOM.
Completed
Last Updated: 06 May 2022 17:21 by ADMIN
Release R3 2021 SP1
Created by: Rick Kauwen
Comments: 11
Category: Reporting
Type: Feature Request
16
The property DataSources is internal in the Report class. When manipulating the datasources of a report it's easier to have access to this collection than to go through all the elements en report parameters to check for datasources
Unplanned
Last Updated: 05 May 2022 14:02 by Patrick
If you navigate to a different page while the report is being loaded, once the whole report is completely rendered, the page number is reset to 0. Please, check the attached video.
Unplanned
Last Updated: 05 May 2022 11:03 by Anubhav

My ReportLibary has 174 reports. When I tried to convert them at once with the Standalone designer, it converted a few of them and threw the following exception (showing part of the Stack Trace):

Application: Telerik.ReportDesigner.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.InvalidOperationException
   at System.Windows.Forms.BindingSource.get_Count()
   ...

Converting the reports in smaller portions was successful.

Unplanned
Last Updated: 04 May 2022 13:06 by Vahidreza

The property of the Graph Numerical Axis CrossAxisValue is listed in the Bindings editor dropdown of the Graph Coordinate System. When I set it, the report displays an error that the property does not exist.

I found out that the property is obsolete.

Unplanned
Last Updated: 28 Apr 2022 09:59 by Rene
In the group header section of my report I have a "toggle visibility" action. It will hide or display the details of the report. In the group footer section, I've got a sub-report. The report loads with the details hidden. I can see the sub-report value when the report loads. But when I click on the toggle visibility Icon to show the details the sub-report disappears. 
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: 22 Apr 2022 09:24 by Daniel
Refreshing the WPF Report Viewer messes up the values of the report parameters which leads to an error message, that there is an invalid report parameter value, being displayed in the viewer.
Unplanned
Last Updated: 20 Apr 2022 13:32 by Wojciech

Here is an example of the procedure on AdventureWorks 2019 database:

SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE PROCEDURE [dbo].[ProcedureConditionsTest]
@ReportPart SMALLINT = 1
AS
BEGIN
SET NOCOUNT ON;
IF @ReportPart = 1
BEGIN
SELECT P.FirstName AS FirstNamePart1, P.MiddleName AS MiddleNamePart1, P.LastName AS LastNamePart1,
	A.AddressLine1 AS AddressLine1Part1, A.AddressLine2 AS AddressLine2Part1, A.City AS CityPart1, A.PostalCode AS PostalCodePart1,
	SP.StateProvinceCode AS StateProvinceCodePart1, SP.CountryRegionCode AS CountryRegionCodePart1, SP.[Name] AS NamePart1
FROM [Person].[Person] AS P
JOIN [Person].[BusinessEntityAddress] AS BEA ON P.BusinessEntityID = BEA.BusinessEntityID
JOIN [Person].[Address] AS A ON BEA.AddressID = A.AddressID
JOIN [Person].[StateProvince] AS SP ON A.StateProvinceID = SP.StateProvinceID
WHERE P.FirstName BETWEEN 'A. Scott' AND 'Justine'
ORDER BY P.FirstName, P.LastName
END
ELSE IF @ReportPart = 2
BEGIN
SELECT P.FirstName AS FirstNamePart2, P.MiddleName AS MiddleNamePart2, P.LastName AS LastNamePart2,
	A.AddressLine1 AS AddressLine1Part2, A.AddressLine2 AS AddressLine2Part2, A.City AS CityPart2, A.PostalCode AS PostalCodePart2,
	SP.StateProvinceCode AS StateProvinceCodePart2, SP.CountryRegionCode AS CountryRegionCodePart2, SP.[Name] AS NamePart2
FROM [Person].[Person] AS P
JOIN [Person].[BusinessEntityAddress] AS BEA ON P.BusinessEntityID = BEA.BusinessEntityID
JOIN [Person].[Address] AS A ON BEA.AddressID = A.AddressID
JOIN [Person].[StateProvince] AS SP ON A.StateProvinceID = SP.StateProvinceID
WHERE P.FirstName BETWEEN 'K.' AND 'Zoe'
ORDER BY P.FirstName, P.LastName
END
END
GO

In the report Designer I added two SQL Data Source named Part1 and Part2:

Part1:

EXEC [dbo].[ProcedureConditionsTest]
@ReportPart = 1


Part2:

EXEC [dbo].[ProcedureConditionsTest]
@ReportPart = 2

On both sources, I have column sufix Part1.

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: 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: 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.

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.

 

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: 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 09:18 by ADMIN

This is the outcome in the Standalone designer:

This is the outcome in the WPF viewer:

 
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.

Duplicated
Last Updated: 31 Mar 2022 09:56 by ADMIN
Created by: David
Comments: 1
Category: Reporting
Type: Feature Request
1
MAUI would truly benefit from a reporting engine. While MAUI with Blazor could supposedly use your Reporting engine, that is less straightforward than such an engine working directly with MAUI.