Completed
Last Updated: 22 Jan 2020 13:00 by ADMIN
Created by: James
Comments: 1
Category: Reporting
Type: Feature Request
4
Please add the the report viewer control to Blazor.
Declined
Last Updated: 22 Jan 2020 09:30 by ADMIN
Sometimes when the width of the page is less than the one of the report (<13px). This content on the right side (the last 12px) will be not visible.
Completed
Last Updated: 22 Jan 2020 09:30 by ADMIN
Release 2020\R1
Created by: Nasi
Comments: 0
Category: Reporting
Type: Bug Report
1

In HTML5 Report Viewer it is possible to intercept a client request (e.g. the request to export a report to a particular export format) and modify it like this:

{"format":"<script>alert(1)</script>","deviceInfo":{"enableAccessibility":false,"enableSearch":true,"BasePath":"/COAT_SIT/api/reports"},"useCache":true,"baseDocumentID":"31d0a1ca0162a3f13e92bf"}

The malicious script will be executed when the error message for a missing export format is displayed in the viewer.

Completed
Last Updated: 16 Jan 2020 11:54 by ADMIN

When the user confirms changing the chart type through the "Change Chart Type" dialog window, the graph designer does not get refreshed and still shows the old chart type.

Underneath the graph item is actually changed and if the report is previewed, the new graph layout will be displayed. The current workaround is to refresh the graph designer by changing one of its properties that cause full item refresh - Culture, Graph title, NoDataMessage, etc.

Unplanned
Last Updated: 10 Jan 2020 15:56 by ADMIN

Under Linux, when the font is set with Conditional Formatting some of the TextBoxes may be rendered with different that the expected Font in Docx. Other TextBoxes set with the same rule to the same font are rendered correctly.

The same report rendered in Docx under Windows produces the correct document.

Unplanned
Last Updated: 06 Jan 2020 10:07 by ADMIN
Created by: Paul Johnson
Comments: 0
Category: Reporting
Type: Bug Report
1
If you export a table in RTF whose content is longer than 1 page, in the exported document the whole table will be placed on one page only and the rows that are in the end might not be seen.
Completed
Last Updated: 13 Dec 2019 15:27 by ADMIN
When you choose the option to print the report you get the print dialog. You select page 1 and print. After that you get a dialog saying "Printing ..." and after that, it is closed but the page is never shown on the printer. I tested this on several printers, including virtual, and page never reaches any of them. If you print the entire document, the first page is printed successfully with the rest of the report.
Completed
Last Updated: 13 Dec 2019 15:20 by ADMIN

As virtually every product with 10+ years of development, Telerik Reporting has a certain amount of legacy code that was considered immutable at the time of writing. During the refactoring of our codebase to make it compatible with .NET Standard, we introduced a few types from System.Windows.Forms namespace to substitute the ones missing in the current version of the framework. Such types are System.Windows.Forms.CheckState and System.Windows.Forms.ControlPaint. Some of these types are introduced in recent release of .NET Core 3 for Windows Forms and therefore a conflict occurs between the types in our assemblies and the ones declared in .NET Core. The error is thrown in compile-time and it is similar to the one shown below:

The type 'CheckState' exists in both 'System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' and 'Telerik.Reporting, Version=13.2.19.918, Culture=neutral, PublicKeyToken=a9d7983dfcc261be'

 

In a future release of our product this collision will be avoided by using a dedicated enumeration for the duplicated types. A possible workaround would be to add an extern alias to the assembly reference of Telerik.Reporting. In this case all the references to Telerik.Reporting have to be edited to use the new alias, but the code that refers to the actual types from System.Windows.Forms will remain unchanged.

 

Here is how the Telerik.Reporting reference would look like in the application .csproj file:

  <ItemGroup>
    <Reference Include="Telerik.Reporting">
      <HintPath>..\..\..\Bin\netstandard2.0\Telerik.Reporting.dll</HintPath>
      <Aliases>telerikReporting</Aliases>
      </Reference>
  </ItemGroup>

 

Using the alias means that all the types in Telerik.Reporting namespace must be accessed with this alias. Unfortunately this also applies to C#/VB report definitions - their types must also be prepended with the alias, which could require significant effort. Here is a sample code file that initializes the WinForms Report Viewer and examines the CheckState of a CheckBox control in the form:

extern alias telerikReporting;

using System;
using System.Windows.Forms;

namespace WindowsFormsCoreDemo
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
            this.Load += this.Form1_Load;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            this.reportViewer.ReportSource = new telerikReporting::Telerik.Reporting.UriReportSource()
            {
                Uri = "SampleReport.trdp"
            };

            this.reportViewer.RefreshReport();
        }

        private void CheckBox_CheckedChanged(object sender, System.EventArgs e)
        {
            if (this.checkBox.CheckState == CheckState.Checked)
            {
                this.reportViewer.RefreshReport();
            }
        }
    }
}
Completed
Last Updated: 13 Dec 2019 15:20 by ADMIN
Release 2020\R1
Created by: Ikbum Kim
Comments: 0
Category: Reporting
Type: Bug Report
1
Changing the Telerik Report Viewer pageMode setting through PageMode method does not work correctly
Unplanned
Last Updated: 12 Dec 2019 14:13 by Adam
The problem is not getting the error via Dot Net programming, but the complete layout destruction of the report as a result of the fact that a picture (in our case a thumbnail of a provider) is unavailable. Catching the report error is not an option. It is too complicated and even if we succeed  in obtaining the error, it will be very complicated to remove the unavailable url on the fly and re-render the report again. 

This seems to be a "known issue" for about 8 years!

My question: Is it possible to keep the remaining report "intact" if such an error occurs? This shouldn't be too difficult for the development team..
Unplanned
Last Updated: 09 Dec 2019 17:55 by ADMIN
The report is not exported correctly in PDF when the Font is Sakkal Majalla and Text Align is Right. If you set the Text Align to left, everything works as expected.
Unplanned
Last Updated: 05 Dec 2019 15:22 by ADMIN
Created by: Michael Bouhuys
Comments: 0
Category: Reporting
Type: Bug Report
1

When merging the ReportViewer's WPF theme dictionaries from the DLL in App.xaml, the VS2019 Designer fails due to a problem with a ZoomComboBoxStyle definition.

This causes all Telerik UI for WPF control's styles fail to load in the Visual Studio designer.

WORKAROUND

Instead of App.xaml, merge the ReportViewer's theme dictionary closer to the control.

For example in the ReportViewer's direct parent:

<Grid>
<Grid.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- Moved from app.xaml -->
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Summer/Telerik.ReportViewer.Wpf.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Grid.Resources>

<tr:ReportViewer x:Name="ReportViewer1" ReportSource="{Binding CurrentReport}" />
</Grid>

Unplanned
Last Updated: 05 Dec 2019 10:27 by ADMIN
Let the user configure whether the Standalone designer to start initially in Interactive or PrintPreview mode. Currently, it starts always in Interactive mode and this may cause slow down or even hanging if the previewed report is huge.
Unplanned
Last Updated: 04 Dec 2019 10:13 by ADMIN
Created by: Neli
Comments: 0
Category: Reporting
Type: Bug Report
2

When you try to send the report through the SendMailMessage functionality but an exception is thrown, the report will disappear. If you click on Refresh and try again with fake data, the exception will be thrown but the report will remain. If you prefer to refresh it automatically, you can use the error event:


var viewer = $("#reportViewer1")
.telerik_ReportViewer({
    serviceUrl: "api/reports/",
    reportSource: {
        report: "Report Catalog.trdp",
    },
    error: function (e, args) {
        console.log("This event handler will be called after a page of the report is ready.");
        console.log("The error message is: " + args);
        viewer.refreshReport();
    },
    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
    scale: 1.0,
    enableAccessibility: false,
    sendEmail: { enabled: true }
}).data("telerik_ReportViewer");

Unplanned
Last Updated: 25 Nov 2019 12:27 by ADMIN
If the data retrieval class is implementing IDisposable, the engine never invokes Dispose method. This can result in unexpected and unwanted data caching. Consider to invoke the IDisposable.Dispose if the data retrieval class is referenced by type (this.objectDs.DataSource = typeof(MyDataLayer))
Completed
Last Updated: 18 Nov 2019 15:43 by ADMIN
An exception is thrown when trying to configure Authentication parameters in WebServiceDataSource: Response status code does not indicate success: 400 (Bad Request)
Unplanned
Last Updated: 15 Nov 2019 15:28 by ADMIN
Created by: Martin
Comments: 0
Category: Reporting
Type: Feature Request
4

As in Ticket with ID 1440072 requested we are looking for a funktionallity to send Reports via E-Mails with the WPF ReportViewer. As only the HTML-5 ReportViewer currently supports the E-Mail sending we would request the feature for WPF as well.

 

Best Regards,

Martin

Unplanned
Last Updated: 15 Nov 2019 12:15 by ADMIN
In some cases, the report width is bigger than the page width. Horizontal scroll appears.
Completed
Last Updated: 15 Nov 2019 08:34 by ADMIN
Created by: Luca Galbiati
Comments: 37
Category: Reporting
Type: Bug Report
80

The print functionality cannot be used in Google Chrome 77.0.3865.75 (lastest update).  The following error is displayed in the console of the browser: Resource interpreted as Document but transferred with MIME type application/pdf.

As an alternative, you can use other web browsers for printing. 

Unplanned
Last Updated: 15 Nov 2019 07:57 by ADMIN
This may result in clipping the maximum value of the Radial axis label, as it is part of the Plot Area. Normally, introducing padding will remove clipping.