Unplanned
Last Updated: 11 Jul 2022 07:16 by ADMIN
Created by: Mirzodaler
Comments: 4
Category: Reporting
Type: Feature Request
5

We have implemented custom storage (IDefinitionStorage) with the SaveDefinition method where it saves the edited report in a custom way. There can be some validations and save can fail. For this, I am just throwing a new Exception. The error message is showing in a general way, and it doesn't show my custom message.

Completed
Last Updated: 12 May 2021 13:42 by ADMIN
Release R2 2021
Created by: Olivier
Comments: 2
Category: Reporting
Type: Feature Request
5

Hi,

I'm not reporting an issue here, just making a suggestion about a minor change that I would consider as an improvement.

I'm loading at runtime a report template that was created using the standalone report designer. I'm dynamically replacing all the 'DataSources' of the report, and thus I have to go through all the items of the report to find them all.

The first step is to flatten all the items with a recursive call, starting from the 'Report'. I get a list of ReportItem, and I can cycle through this list and find those that inherits from 'DataItem'. From there, I just have to pick all the distinct DataSources from these DataItems.

And it almost works, except that I'm missing the DataSource from the Report itself, as the Report class does not inherit from DataItem but implements IDataItem.

If IDataItem was public, I could simply use it instead of 'DataItem', but as it is internal I have to handle a special case. And I don't like that.

Maybe I'm missing a good reason to keep this interface internal, but if not my suggestion is to make it public.

Regards,

Olivier

Unplanned
Last Updated: 17 Sep 2020 13:37 by ADMIN

The FreezeColumnHeaders functionality doesn't behave properly when Action is set on the header. The white background color of the headers which we need to see in the viewer when the FreezeColumnHeaders property is set to True is missing. Please, check the attached project which reproduces the issue. If you reset the Action property of the ID header, then the FreezeColumnHeaders functionality works as expected.

Completed
Last Updated: 15 Dec 2020 11:13 by ADMIN
Release R3 2020 SP1
Created by: Simon
Comments: 5
Category: Reporting
Type: Feature Request
5
This will allow the SVG images to retain high quality at all zoom levels.
Completed
Last Updated: 20 Jan 2021 14:03 by ADMIN
Release R1 2021
Created by: SturmA
Comments: 2
Category: Reporting
Type: Bug Report
5

When a Report with ObjectDataSourceParameter is loaded into the WebReportDesigner, the designer throws an error when trying to initialize the parameter.

Could not create instance of 'ObjectDataSourceParameter'. TypeError: Cannot read property 'push' of undefined
    at new d (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:89908)
    at new a (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:277743)
    at s.CreateInstance (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:644848)
    at d.<anonymous> (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:515470)
    at Generator.next (<anonymous>)
    at http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:513964
    at new Promise (<anonymous>)
    at l (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:513709)
    at d.CreateComponent (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:515160)
    at a.<anonymous> (http://localhost:23456/api/reportdesigner/designerresources/js/webReportDesigner-14.2.20.1021.min.js/:9:58884) 

Unplanned
Last Updated: 14 Dec 2020 15:10 by ADMIN
Created by: Natalie
Comments: 0
Category: Reporting
Type: Feature Request
5
Exclude(hide/show) a report from Report Book based on ReportBook Parameter
Unplanned
Last Updated: 09 Feb 2022 07:42 by ADMIN
Created by: Maxim
Comments: 2
Category: Reporting
Type: Bug Report
5
I have a table in the Report Header and when I export to CSV format, the table does not appear in the document.
Completed
Last Updated: 23 Sep 2021 10:10 by ADMIN
Release R3 2021
Created by: Framiac
Comments: 3
Category: Reporting
Type: Feature Request
5
Currently, the WPF Report Viewer won't work in WinUI because of the differences in the resource dictionary XAML (system.xaml vs Microsoft.ui.xaml). It would be nice if there is a report viewer for WInUI.
Completed
Last Updated: 21 Sep 2021 10:26 by ADMIN
Release R3 2021

The ObjectDataSource component in the Web Report Designer does not have complete design-time support. The major things that are missing:

  • there is no dedicated wizard that helps to discover and select business classes and appropriate data retrieval methods.
  • its data schema is not retrieved from the REST service and since it's unavailable, the Edit Expression dialog does not populate its Fields collection.
Unplanned
Last Updated: 01 Apr 2021 06:14 by ADMIN

Example:
One panel contains two textboxes which both have property Docking set to 'Top'. If the first textbox expands when rendering as a result of overflowing content and property CanGrow set to 'True', the next textbox seems to be correctly positioned, but any item position below the panel with Docking set to 'Top' will be incorrectly positioned.

Unplanned
Last Updated: 14 Jan 2022 15:53 by ADMIN
Created by: Pat
Comments: 3
Category: Reporting
Type: Feature Request
5

It would be really great if there is a Funnel chart.

We are trying to visualize the quantitative slippage in tasks assignment in a given month-range.

We did it very well in SSRS Reporting and as we migrate to Telerik Reporting, we can't quite figure out how to present it.

 

Unplanned
Last Updated: 13 Nov 2025 09:58 by ADMIN
If you try to add a new selector in a new or existing StyleRule in the WebReportDesigner, a new TypeSelector gets added automatically rather than letting you choose from the list of the available selectors.
Completed
Last Updated: 17 Oct 2023 11:22 by ADMIN
Release 2023 R3
When we create a report and when previewing the report it may show an error because the OData query of WebServiceDataSource is not correctly designed, etc. This can help us to debug our report.
Unplanned
Last Updated: 26 Oct 2022 11:09 by ADMIN

The SQL datasource incorrectly recognizes Table Variables in its SQL statement as parameters. The SQL wizard shows the "Configure data source parameter" page and fails to execute the statement.

PROBLEM DESCRIPTION:
A simple statement that uses Table Variables is shown below:
USE AdventureWorks
DECLARE @TestUDTs TABLE(AddressTypeID int NOT NULL, [Name] dbo.Name NOT NULL PRIMARY KEY CLUSTERED(AddressTypeID))
INSERT @TestUDTs(AddressTypeID, [Name]) SELECT AddressTypeID,[Name]
FROM Person.AddressType SELECT * FROM @TestUDTs

Unplanned
Last Updated: 24 Mar 2022 13:04 by Neli

The Angular Report Viewer uses the jQuery npm package, while the Web Report Designer uses jQuery.min.js directly from a CDN. If you try to use both Angular Viewer and JS Web Designer in the same application there will be a conflict while loading jQuery twice from the different sources. This is why the Angular Report Viewer cannot be loaded together with the JS Web Report Designer in the same application. The KB article Displaying the Web Report Designer in Angular application provides a Known Issues section at the bottom where this problem is explained:

"Telerik Web Report Designer could not be integrated into Angular application together with Angular Telerik Report Viewer. That is why this article shows how to use the Telerik Web Report Designer in angular application with jQuery-based HTML5 Telerik Report Viewer."

Unplanned
Last Updated: 04 Nov 2021 15:40 by ADMIN

The print button does not work in Chrome and Edge when the PDF default behavior is set to Download PDF.

 

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.
Unplanned
Last Updated: 02 Dec 2021 12:03 by ADMIN

I have a table with all of my columns sortable. 

When I add the sorting button using the Interactivity feature, the buttons are all left aligned. It is confusing when trying to figure out which button sorts a column. See the attachment.

I'd like to be able to move the sorting button left or right.

 

Unplanned
Last Updated: 25 Feb 2025 09:49 by ADMIN
Created by: Smiljan
Comments: 2
Category: Reporting
Type: Feature Request
5

please please put OR operator in Report designer data-source query.

For years users request and ask same question and still (in 2021) Report designer doesn not support OR query.

You can manually enter OR operator in sql-query, but then you cannot use the designer. :(((

 

Completed
Last Updated: 17 Feb 2022 14:53 by ADMIN
Release R1 2022 (Latest Internal Build)
Processing Base64-encoded images will throw exception "Invalid URI: The Uri string is too long" if the content size is greater than 65519 bytes