Declined
Last Updated: 03 Jul 2019 08:54 by ADMIN
Created by: Patrick
Comments: 1
Category: Reporting
Type: Feature Request
0

Hi, can you organize the progress windows' program group and group packages by version? A sample of half of my list in windows in the file I joined.

Thanks,

Unplanned
Last Updated: 02 Jul 2019 09:08 by ADMIN
Created by: Ronald
Comments: 0
Category: Reporting
Type: Bug Report
1
After the report is translated we started to change the sequence of parameters. This works fine except the translated texts do not move with it. So parameters have the wrong text.
Pending Review
Last Updated: 01 Jul 2019 05:25 by ADMIN

Hi,

 

There is an issue where the search window that opens from the Report Viewer tool bar does not allow for deleting text from the search string input box using backspace.

The keyboard command provider seems to have many other keys covered for the intended behavior, but backspace does not seem to be handled appropriately.


Unplanned
Last Updated: 26 Jun 2019 13:09 by ADMIN
When in a table group GroupKeepTogether is set to True and PageBreak to After, the Table item may not render correctly in physical paging formats. In formats, without physical paging, the report is displayed correctly.
Completed
Last Updated: 26 Jun 2019 06:50 by ADMIN
Created by: Silviya
Comments: 0
Category: Reporting
Type: Feature Request
1

After R1 2019 Telerik Web Report Viewers use Kendo splitter for resizing Parameters and Document map areas. At this point, there is no way to change the Parameters Areas position.

Unplanned
Last Updated: 25 Jun 2019 10:09 by ADMIN
Created by: Uday
Comments: 2
Category: Reporting
Type: Feature Request
8
It will be great if the Office (Word, Excel, PowerPoint) reports generated by Telerik Reporting can be password protected.
Unplanned
Last Updated: 24 Jun 2019 10:05 by ADMIN
Created by: John
Comments: 0
Category: Reporting
Type: Feature Request
3
It would be great if it is possible to access the Windows User in the report without the need of writing additional code.
Unplanned
Last Updated: 24 Jun 2019 09:08 by ADMIN
Created by: Peter
Comments: 0
Category: Reporting
Type: Feature Request
1
Currently to add a new Shared/Project DataSource a new component item is added and then modified manually to Telerik Reporting DataSource. This is not obvious and is kind of peculiar workflow. Thus consider adding ItemTemplates to manage the process for adding new Telerik Reporting Shared/Project DataSources.
Unplanned
Last Updated: 21 Jun 2019 11:19 by ADMIN
Created by: Carl
Comments: 1
Category: Reporting
Type: Feature Request
1

It would be extremely useful to have a Crosstab export the entire hierarchy as groups in Excel. SQL Reporting Services does this when exporting a report created there. I realize that this would mean generating the entire dataset prior to the export in order to expand all the data, but as I said, SSRS does this without a noticeable performance delay.

 

 

Unplanned
Last Updated: 21 Jun 2019 08:14 by ADMIN

I am using the standalone report designer with an ObjectDataSource that returns ExpandoObject. I did create some new ExpandoObject objects and set property values as suggested in https://www.telerik.com/support/kb/reporting/details/how-to-use-objectdatasource-with-expandoobjectThe problem I have that the dynamic properties of ExpandoObject are now showing in the data explorer.

Completed
Last Updated: 20 Jun 2019 15:59 by Ivan
ADMIN
Created by: Dimitrina
Comments: 3
Category: Reporting
Type: Feature Request
2
If the controls and PDF generated from Designer or API from scratch will be 508 compliant? PDF needs to be tagged, so when a reader reads its images have text alternative for it to read.
Completed
Last Updated: 20 Jun 2019 15:53 by ADMIN
Created by: Guillaume
Comments: 0
Category: Reporting
Type: Feature Request
0
Have control on the Parameters Area's initial state on creating the viewer
Completed
Last Updated: 20 Jun 2019 13:23 by ADMIN

When dynamically create a new tab which contains a report viewer, only the first report is rendered correctly. The subsequent tabs with report viewers are empty.

Completed
Last Updated: 20 Jun 2019 13:21 by ADMIN
Release R2 2019 SP1
Created by: Mark
Comments: 0
Category: Reporting
Type: Feature Request
3
I need the ability to get the selected printer settings out of the printer dialog box once the user has selected their options and hit print/apply. I need this information in the PrintEndEvent in order to find out where the user is printing to (pdf or to a printer). 
Completed
Last Updated: 20 Jun 2019 13:20 by ADMIN
Release R2 2019 SP1
t
Created by: Mozhgan
Comments: 1
Category: Reporting
Type: Bug Report
3
t

Hi Support Team,

 

There an issue  for exporting  report to PowerPoint when there is grouping in table and tables goes to next page, 

I got this error : "The given key was not present in the dictionary"

I've attached sample trdx file for your consideration.

 

Thanks,

Mozhgan Javadi

Completed
Last Updated: 20 Jun 2019 13:18 by ADMIN

Using the following code for updating the ReportSource of the viewer:

ngOnInit() {
  this.setParameters();
}

setParameters(): void {
  this.reportViewer.setReportSource({
    report: 'SampleReport.trdp',
    parameters: {}
  });
}

comes up with the error 

Argument of type '{ report: string; }' is not assignable to parameter of type 'JSON'.
  Type '{ report: string; }' is missing the following properties from type 'JSON': parse, stringify, [Symbol.toStringTag]

Currently, the workaround is to cast the reportSource object as follows:

ngAfterViewInit() {
  this.setReportSource();
}
 
setReportSource(): void {
  let rs = {
    report: 'SampleRepport.trdp',
    parameters: {}
  } as unknown as JSON;
  this.viewer.setReportSource(rs);
}


Completed
Last Updated: 20 Jun 2019 13:17 by ADMIN
The MS Access OLE DB provider is not providing the correct QuotePrefix, QuoteSuffix, QuoteAlias that is causing errors in the SQL Query Designer that is part of the Standalone Report Designer.
Completed
Last Updated: 20 Jun 2019 13:17 by ADMIN
Release R2 2019 SP1
When exporting a report with Crosstab which data source doesn't have any data, and the NoDataMessage property is not set, the report designer/viewer throws an error with message "Index was outside the bounds of the array”
Completed
Last Updated: 20 Jun 2019 13:14 by ADMIN
Release R2 2019 SP1

When attempting to export a report in Excel 97-2003 format, an exception is thrown: 

"The type initializer for Telerik.Reporting.Excel 97.Workbook threw an exception. Object contains non-primitive or non-blittable data."

As HTML, PDF and OpenXML-based renderings are supported on Linux/macOS machines, please remove the old Excel 97-2003 format.

Completed
Last Updated: 20 Jun 2019 13:14 by ADMIN
Release R2 2019 SP1

When trying to set the 'parametersAreaVisible' option in the Angular viewer the application breaks with an error in the browser console:

"Can't bind to 'parametersAreaVisible' since it isn't a known property of 'tr-viewer'."