Completed
Last Updated: 18 Nov 2020 10:24 by ADMIN
Release R3 2020 SP1 (Latest Internal Build)

Steps to reproduce the issue:

1. Create a new report in the WebReportDesigner;

2. Add a simple CSV DataSource (for example with Item and Value columns);

3. Select the Table Wizard and set the CSV DataSource as a Value of the DataSource property;

You will notice that the names of the columns from the datasource are missing.

 

Unplanned
Last Updated: 04 Nov 2020 10:21 by ADMIN
I created my own ADO.NET Cache Provider. I have found that when a report is being generated programmatically and it failed over SQL timeouts it doesn't clear the session_state table.
Completed
Last Updated: 20 Jan 2021 14:04 by ADMIN
Release R1 2021
When we render our report in PDF or preview it in PrintPreview mode in the viewer, the last page may be lost.
Unplanned
Last Updated: 11 Nov 2020 13:39 by ADMIN
The issue can be reproduced in the attached sample report. In it, the Visible property of the Detail1 and Detail2 cells is set to False. When you export the report to Word, the DOCX file is broken. 
Unplanned
Last Updated: 23 Nov 2020 07:44 by ADMIN

Steps to reproduce:

1. Download and run the attached project in IE or Firefox

2. Write in the field for example "haha" and click the button.

3.Scroll down and you will notice that the headers are not frozen.

Unplanned
Last Updated: 23 Nov 2020 08:15 by ADMIN

Steps to reproduce:

1.Download and run the project

2. If the scaleMode is FitPage, the report doesn't appear

3. If the scaleMode is FitPageWidth, the UI seems to be broken

You can check the attached video for further reference.

 

Unplanned
Last Updated: 02 Dec 2020 16:45 by ADMIN
Created by: Heiko
Comments: 1
Category: Reporting
Type: Feature Request
1
Please add a property "ToolbarVisible" to WPF ReportViewer. Most of the cases the buttons are not useful or should be replaced by some custom toolbar. 
Under Review
Last Updated: 03 Dec 2020 09:56 by ADMIN
Created by: Heiko
Comments: 1
Category: Reporting
Type: Bug Report
1

The SearchDialog is placed based upon a parent window of type "Window". However, when I use other types like "RadRibbonWindow" as my main window the placement does not work correct. As a result the SearchDialog is shown in the upper right corner of the desktop. This is the code (in SearchDialogController.cs):

        Window GetParentWindow()
        {
            return (this.model.PageScrollViewer == null)
                ? null
                : this.model.PageScrollViewer.FirstParentOfType<Window>();
        }

At least this method should also take RadRibbonWindow in account (this is certainly not used that rarely since we all use Telerik components!) or for a more generic solution look for types that are derived from Window.

Completed
Last Updated: 12 Jul 2022 18:06 by Joshua
Release R1 2021

The path for window.kendo in initExpDeps.js is incorrect. This does not always lead to error. When there's an error it can be the following:

Module not found: Error: Can't resolve '.\telerikReportViewer.kendo.min'" in "ERROR in ./node_modules/@progress/telerik-angular-report-viewer/dist/dependencies/initExtDeps.js

Unplanned
Last Updated: 04 Dec 2020 09:59 by ADMIN
In my scenario, I save the ReportSource instances in a dictionary in the custom ReportSource Resolver:
private static ConcurrentDictionary<string, EsiInstanceReportSource> _irs = new ConcurrentDictionary<string, EsiInstanceReportSource>();
However, I have no chance to delete the memory because there is no event or flag to see when it is not needed anymore.
Unplanned
Last Updated: 10 Dec 2020 12:42 by ADMIN
Created by: Rashid
Comments: 0
Category: Reporting
Type: Feature Request
1

The editor for parameters can be set for each type of parameter, but not individually for each parameter.

This means if there are two parameters that both have availableValues and have multiselect set to false, different editors can be set for each of these two parameters.

Pending Review
Last Updated: 14 Dec 2020 10:54 by Fandy Backers

Exporting a report from the Report-Viewer to Word(docx), then opened in Word for Web (browser-version of Word) causes incorrect rendering of the document. Images are replaced with placeholders.

In comparison, exporting the report as PDF, then opening and converting it to Word and uploading it, renders much more correct and with images.

Completed
Last Updated: 31 Jan 2024 12:24 by ADMIN
Release 2024 Q1

In .NET Core the localization routines have changed and the approach to localize an application provided in the documentation doesn't work.

When adding the localized .resx files as described in the documentation - with BuildAction set to None - the resource strings cannot be obtained and even the default string values are lost. This effect can be mitigated with changing the BuildAction to EmbeddedResource.

 

Completed
Last Updated: 09 Jun 2022 11:26 by ADMIN
Release R1 2022
Created by: omti
Comments: 0
Category: Reporting
Type: Bug Report
1
The search does not always work when you press the enter key.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1

A possible solution would be to expose a ParametersAreaLoaded and ParametersAreaUpdated events with the needed arguments.

This will make migration from Silverlight easier. There the user has a direct access to them through the ReportViewerModel.

Unplanned
Last Updated: 04 Jan 2021 09:19 by ADMIN
Created by: ryan
Comments: 0
Category: Reporting
Type: Feature Request
1
If Acrofields were supported when exporting to PDF, fields can be filled after reports have been exported, allowing end-users to more easily add text to a report.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1
User is migrating from Silverlight where he had direct access to it.
Unplanned
Last Updated: 28 Jan 2021 12:35 by ADMIN

On numerous occasions I've found that the need to float or rearrange the designer windows such as the data explorer, properties or group explorer window would be very beneficial to my workflow.

As well this request should consider the ability of the data explorer and report explorer to be decoupled so as both can be visible simultaneously.

Unplanned
Last Updated: 05 Feb 2021 15:10 by ADMIN
Created by: Claudio
Comments: 3
Category: Reporting
Type: Bug Report
1

The parametersAreaVisible property of the angular report viewer allows controlling the visibility of the report parameters area.

Currently, this property can only be set. Reading the property doesn't reflect the current visibility of the report parameters area.

While jquery can be used as a work around to determine the visibility of the report parameters area (by reading the width of the corresponding DOM element), a proper angular API would be nice.

Completed
Last Updated: 16 Feb 2022 14:53 by ADMIN
 After the upgrade on telerik-angular-report-viewer to ^12.21.120 from  ^10.20.513, the viewer doesn't make requests to the service. The reports controller uses authentication, which might be related to the issue. The attached file consists of 2 projects- 1 with the old version that is working and the new version that does not work.