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: 26 Feb 2020 15:07 by ADMIN
Release 2020\R1 SP1
Currently, there is no WebServiceDataSource property for controlling the Timeout for canceling the task for fetching the data. The default value is 100s, as inherited from the HttpClient. In some cases this is not sufficient, causing the cancelation of the task and failure of the report.
Completed
Last Updated: 16 Jul 2021 08:45 by ADMIN
Release R2 2021 SP1 (Latest Internal Build)
Created by: Daniel
Comments: 0
Category: Reporting
Type: Bug Report
1
When I place an HtmlTextBox in a table column and set its top padding, the padding is respected when previewing in the designer and when the report is rendered in PDF. When previewing in the Html5 Viewer the padding is ignored.
Completed
Last Updated: 26 Feb 2020 16:26 by ADMIN
Release R1 2020 SP1
Created by: Sami
Comments: 1
Category: Reporting
Type: Bug Report
1
The TOC is missing when the report is exported programmatically to Word in .NET Core application
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: 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: 26 Mar 2021 17:27 by ADMIN
Created by: Kwinten
Comments: 1
Category: Reporting
Type: Feature Request
6

Hello, 

It would be nice to control the report loading animation during a report viewer refresh. We are refreshing a report every x seconds and it appears to be flickering during a refresh.

Thank you.

Unplanned
Last Updated: 30 Nov 2022 17:07 by Joan
Created by: Mark
Comments: 3
Category: Reporting
Type: Feature Request
21
Dark theme is so much needed.
Planned
Last Updated: 28 Oct 2020 19:02 by ADMIN
Scheduled for R1 2021

If a table-based item (Table, List, Crosstab) does not fit in a single page and needs to occupy more than one page, its bottom border is not drawn on the first page and its top border is not drawn on the second (subsequent) page. This behavior is by design and its purpose is to help the users visually distinguish the table as a single item. The table has only one top and bottom border and they are displayed at the beginning and at the end of the table, regardless how many pages the table actually occupies.

Since users might find this confusing, a table should have a property controlling this behavior. The default state of the property will preserve the current rendering. If the user explicitly sets the property, then the table will draw its top and bottom borders on every page it occupies.

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();
            }
        }
    }
}
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.
Unplanned
Last Updated: 14 Nov 2019 11:02 by ADMIN
Created by: Graham
Comments: 0
Category: Reporting
Type: Bug Report
2
MultiValue parameter cannot be selected/ unselected in iOS 13.2 
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: 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: 05 Nov 2019 14:42 by ADMIN
If the Kendo SASS based theme is used the resize handle and collapse/expand icon has some UI issies.
Unplanned
Last Updated: 04 Nov 2019 12:53 by ADMIN
If a user desires to send a report by email, the recipient will receive the message from a generic email and if the recipient wants to respond, the response will go to a mailbox that is not monitored. On the other hand, if we use the "From" field and we try to do a "legal spoofing," some email servers will send our messages to spam or simply block them. It could be great to have an option to ask users their email password in the moment when they click on the button to send a report via email. In this way we can send the information in the field "From" and the password entered to the SMTP server.
Unplanned
Last Updated: 04 Nov 2019 12:51 by ADMIN
Unplanned
Last Updated: 04 Nov 2019 10:03 by ADMIN
Created by: Chris
Comments: 0
Category: Reporting
Type: Bug Report
2

We are using a background image in our report. We noticed that on the Mac, the graphs were rendering very small when exporting to PowerPoint.

I found this thread that said to set the ‘UseMetafile’ rendering device setting to False. After doing so, it fixed the graph issue but then broke the background image, for both Windows and Mac PowerPoint. The background image is now very small.

Declined
Last Updated: 08 Nov 2019 16:06 by ADMIN

in our solution, we store the trdx reports designed with Standalone Designer as xml strings in our database,
and render them to pdf in the background services by using  Telerik.Reporting.XmlSerialization.ReportXmlSerializer.Deserialize

the new web based designer would be a good addon to integrate report design directly into the appliciation.

but the current preview version of webreportdesigner needs to be configured with a FileStorage.
it is possible to override the GetReport and SaveReport functions in a custom ReportDesignerController and load the report from a string (db in our case),

but since the ReportJsonSerializer is an iternal class, it is not possible to create a json response and send it to the webeditor.

so it would be helpfull, either to make the ReportJsonSerializer a public class so it can be used to convert the report manally to json, or extend the

whole thing to load the reports from strings directly.

 

Declined
Last Updated: 07 Nov 2019 16:15 by ADMIN
Created by:
Comments: 1
Category: Reporting
Type: Bug Report
1

i down  last new version  r3 2019  sp1 trial, create  Simple example for  binding table

eg:

reporting design tool  render result: