Unplanned
Last Updated: 31 Dec 2021 11:20 by ADMIN
Page sections take up space even when they are hidden when using the PageNumber function with a group scope to control visibility.
Unplanned
Last Updated: 07 Jan 2022 12:55 by ADMIN
Created by: Monique
Comments: 0
Category: Reporting
Type: Feature Request
2

It would be great if you could make the border of the stand alone report designer visible.   It's hard enough to see and grab thin gray lines but Report Designer borders become invisible.   Below is a screen shot of the report designer in front of my Telerik Reporting program folder:

 


Unplanned
Last Updated: 19 Jan 2022 10:12 by ADMIN
Created by: Ryan
Comments: 1
Category: Reporting
Type: Feature Request
2

Our team is in the process of converting Crystal Reports documents over to Telerik Reporting and one of Crystal Reports advantages over Telerik Reporting was the ability to create custom fields with Crystal or Visual Basic Syntax, including the declaration of variables. Lack of variables and a few common constructs can make simple expressions overly complex.

One of the more common use cases for us is formatting text differently based on one or more other values. Without the ability to write if/elseif/else blocks we wind up with nested ternary statements which can be are hard to read and maintain.

While we can write user functions that seems impractical for long term maintenance and support. It would be very helpful if we could create expressions using C# directly in the Report Designer and have the embedded within the report itself.

See my initial request for something similar in the forms here: https://www.telerik.com/forums/feature-request-if-elseif-else-and-or-switch-statement-support-in-expressions

Duplicated
Last Updated: 19 Feb 2025 16:42 by ADMIN
Created by: James
Comments: 3
Category: Reporting
Type: Feature Request
2
It would be very beneficial to have a Standalone designer which targets .NET Core.
Unplanned
Last Updated: 17 Feb 2022 14:02 by Shannon
Created by: Shannon
Comments: 0
Category: Reporting
Type: Feature Request
2
Currently if nullable reference types are enabled in a Web Api project:
<Nullable>enable</Nullable>
validation errors are returned for endpoint which accept null (or nothing) for parameters.
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: 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: 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: 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: 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: 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.
Under Review
Last Updated: 08 Jun 2022 08:05 by ADMIN
Created by: Patrick
Comments: 1
Category: Reporting
Type: Feature Request
2

Hi,

It would be necessary to have a way to export a sub-report to a trdx file with the designer. Also, the same tool could be used to import a sub-report into an XML source. Currently, it takes a lot of acrobatics to be able to do this work.

Thank you for your help!

Unplanned
Last Updated: 07 Jun 2022 14:43 by Ed.
Conditional hiding of the page header section based on a Page function doesn't collapse the empty space left behind
Unplanned
Last Updated: 09 Jun 2022 14:03 by Yale
Created by: Yale
Comments: 0
Category: Reporting
Type: Feature Request
2
Currently, only the fonts which are installed on the machine are listed in the Font Name drowdown. It would be nice if the private fonts are also displayed.
Unplanned
Last Updated: 10 Jun 2022 08:57 by John

Having the PrintOnFirstPage property set to False does not always hide the Page Footer section on the first page

If the vertical space of the report(The paper height of the paper size which can be seen in Report.PageSettings) allows it, the footer will get rendered on the first page despite the property being False.

Unplanned
Last Updated: 20 Jun 2022 14:08 by Luke

Code128 Barcode does not always pick the correct subset for the given input value

For example, the string A12B34C56D

The barcode generated when using the Code128 encoder is longer than the barcode generated when using the Code128A or Code128B encoders.
Completed
Last Updated: 04 Aug 2022 13:35 by ADMIN
Release R2 2022 SP1 (Latest Internal Build)
Created by: Justin
Comments: 1
Category: Reporting
Type: Bug Report
2

It seems that the MultiSelect Combo Box Filtering does not work in the Report Viewer. o be smaller if the user starts typing

example of how it is removed

https://demos.telerik.com/reporting/product-line-sales

Unplanned
Last Updated: 25 Aug 2022 12:01 by James
I produce a lot of Accessible PDF documents that include many unique images - hundreds in most cases. Each image has alt text descriptions in it in the EXIF metadata of the image file itself. Most of the documents I generate a based on a one or two page template used for each record ID. The images are loaded programmatically based on the ID number for the template. Right now, with Accessibility Enabled, Telerik cannot read the image EXIF data. It would be ideal if it could be configured to pick up the descriptions already inside the image file itself. This applies to the stand alone Report Designer and the Visual Studio version.
Unplanned
Last Updated: 14 Nov 2022 11:59 by ADMIN

Hi, While the Report Designer exports tags to the PDF (with Accessibility enabled), the tags exported are not fully compliant with PDF/UA or 508 requirements. For example, my document has several hundred pages, each with two or three data tables on them. While the tags get exported, they are only Paragraph tags, and NOT Table tags. Is there a way to designate Table Header Rows, Header Columns, and Data Cells in Telerik Reporting such that upon export to PDF they get tagged properly?


Unplanned
Last Updated: 07 Sep 2022 12:33 by ADMIN
When exporting to PDF from Telerik Report Designer, single fields of information are broken out into separate tags (by line) rather than lumped into one tag. If possible, it would be better to have all data from the field sent to one Paragraph tag to facilitate reading via accessibility reading technology.