Completed
Last Updated: 18 May 2020 17:57 by ADMIN
Release 2020 R2

Steps to reproduce:

1. Create a Blazor application;

2. Add Teleri.Reporting NuGet package;

3. Add Telerik.WebReportDesigner.Services Nuget package -> some of the app dependencies are broken.

 

Solution:

Refer the .NET Standard DLLs from C:\Program Files (x86)\Progress\Telerik Reporting <Version>\Bin\netstandard2.0.

Unplanned
Last Updated: 31 Mar 2020 10:16 by ADMIN
It would be really helpful if you add a processing and rendering mode which will cut off a lot of interactivity and flexibility issues in favor of faster processing and lower memory consumption.
Unplanned
Last Updated: 22 Apr 2020 07:08 by ADMIN
Created by: StillLearnin
Comments: 0
Category: Reporting
Type: Feature Request
2

As a full time developer I'm constantly switching between open documents.

It would be very nice if the Report Designer would support the standard Ctrl+Tab keyboard shortcut for switching between open tabs.

Pending Review
Last Updated: 22 Apr 2020 08:03 by Sascha
The timestamp field of MSSQL databases is recognized as byte[]. When using the Query Builder of the SqlDataSource wizard of the Report Designers, it tries to convert this byte[] to an image, which fails as the field is not a valid image. This doesn't obstruct the set-up of the data source. The query can also be executed successfully.
Under Review
Last Updated: 30 Jun 2020 13:26 by ADMIN
When i use "MultiSelectEditor" with parameters that have MultiValue set to true and have provided AvailableValues, it doesn't handle them. Only when i use those parameters with "MultiValueEditor" then it handles them even though "MultiValueEditor" is used with parameters that have not provided AvailableValues.
Completed
Last Updated: 26 Mar 2021 16:50 by ADMIN
The current selection of the Properties Area state is lost on selection change. Restoring the Properties Area state after report item selection will improve the Web Report Designer usability.
Completed
Last Updated: 26 Mar 2021 16:56 by ADMIN
Facilitate the Web Service Data Source initial setup or editing in Web Report Designer with a user-friendly wizard. 
Unplanned
Last Updated: 26 Mar 2021 17:01 by ADMIN
Created by: Peter
Comments: 0
Category: Reporting
Type: Feature Request
2
Facilitate the Map item initial setup in Web Report Designer with a user-friendly wizard. 
Unplanned
Last Updated: 15 Jun 2020 08:32 by ADMIN
If I set the column width of a Table with Bindings, everything works as expected when the Table has data. When there is no data in the Table and only the row headers are displayed, the Binding of the width is not respected.
Unplanned
Last Updated: 16 Jun 2020 14:11 by ADMIN
I use conditional formatting to achieve alternating table row colors. One of the rows has top and bottom borders that appear with different thicknesses in the alternating rows. You can see it in both the Designer preview mode as well as in the PDF and on a printed copy of the PDF.
Unplanned
Last Updated: 06 Jul 2020 08:59 by ADMIN
Created by: Siva
Comments: 0
Category: Reporting
Type: Bug Report
2

Sometimes the following unexpected behavior can be observed with the WinForms report viewer.

Steps to reproduce:

1. Run the WinForms application;

2. Select a value for the parameter and click on Preview.

The window's size is decreased.

Unplanned
Last Updated: 23 Jul 2020 10:06 by ADMIN
Created by: Samuel
Comments: 1
Category: Reporting
Type: Feature Request
2

For conditional sorting I use a formula like this:

=IIF(Parameters.SortBy.Value = 1, Fields.id,
 IIF(Parameters.SortBy.Value = 2, Fields.name, Fields.value))

 

This works perfect.

 

Now I would like to do the same with the sortings direction! Something like:

=IIF(Parameters.SortOrder.Value = NULL, ASC, IIF(Parameters.SortOrder.Value >= 0, ASC, DESC))

 

Sadly, the Direction-Field/Dropdown does not support formulas.

 

Unplanned
Last Updated: 22 Jul 2020 08:39 by ADMIN
Created by: Neli
Comments: 0
Category: Reporting
Type: Feature Request
2
Please, add an option to use Turkish Characters as Åž,Ü,İ in QR code and other barcodes.
Unplanned
Last Updated: 28 Jul 2020 16:05 by ADMIN
When you open a report in the HTML 5 Report Viewer with the default ListView parameter editors, and you have parameters that filter based on other selected parameters, deselecting the last parameter does nothing. See the linked video for the issue. The ComboBox parameter editors work correctly.
Planned
Last Updated: 29 Jul 2020 09:49 by ADMIN

If the HTML5 Report Viewer gets hidden on renderingBegin(e, args) event and shown on renderingEnd(e, args) event, its toolbar is shown, but the contents are still invisible.

Code snippet that demonstrates the issue:

$("#reportViewer1")
    .telerik_ReportViewer({
		... initialization script goes here
        renderingBegin: function (e, args) {
           $("#reportViewer1").hide();
        },
        renderingEnd: function (e, args) {
           $("#reportViewer1").show();
        }
    });

Unplanned
Last Updated: 31 Jul 2020 11:02 by ADMIN
In the attached screenshot the Minimum value of '-0.3' is not displayed on the X-axis. The issue is reproducible with some values but cannot be reproduced with others, for example with Minimum of '-0.2' in the same report. The sample report is attached.
Unplanned
Last Updated: 29 Mar 2021 12:30 by ADMIN

The built-in MultiSelect ComboBox offers the "autowidth: true" option. So we need the same for the SingleSelect ComboBox.

The popup element for both of these editors is the same. So please add this option because the lack of it is making us create a custom editor only for this reason.

Completed
Last Updated: 16 Sep 2020 13:06 by ADMIN
Release 2020 R3
The default implementation of ListDefinitions() method trims slashes using hard-coded character instead of using environment-specific characters like Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar. Due to that slash the reports cannot be loaded on Linux (see image below).
Image
Unplanned
Last Updated: 02 Sep 2020 08:36 by ADMIN

When an HTML content is placed in nested block elements, it is displayed differently from the way the browser displays it.

For example, the following HTML:

<div><p>htmlTextBox1</p></div>

is vertically displaced compared to the same content when not wrapped in another block element:

<p>htmlTextBox1</p>

This image demonstrates the difference.

Unplanned
Last Updated: 18 Sep 2020 11:03 by ADMIN

If there is a pageMode option, An error event is fired at initialization, even if no error occurred.

The problem can be reproduced with the HTML5 demo:

$("#reportViewer1")
                .telerik_ReportViewer({
                    serviceUrl: "api/reports",
                    reportSource: {
                        report: "Telerik.Reporting.Examples.CSharp.ReportCatalog, CSharp.ReportLibrary",
                        parameters: {}
                    },
                    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
                    pageMode: telerikReportViewer.PageModes.SINGLE_PAGE,
                    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
                    scale: 1.0,
                    enableAccessibility: false,
					sendEmail: { enabled: true },
					ready: function () { debugger; },
					error: function (e, args) { debugger; }
                });