Completed
Last Updated: 15 Nov 2019 08:34 by ADMIN

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: 25 Nov 2020 14:07 by ADMIN

White space appears between different rows. Depending on the zoom level it could happen on one or more rows.

I will attach a report example to this message.

Unplanned
Last Updated: 13 Oct 2021 13:41 by ADMIN
The config.Routes.MapHttpRoute("ApiDefault", firstPathSegment + "/{controller}/{action}"); defined in ReportsControllerConfiguration.RegisterRoutes hides other matching route patterns registered after it - for example  api/{controller}/{id} will not be matched, because it has the same route pattern.
Completed
Last Updated: 3 Dec 2024 13:53 by Stephan
When exporting a report to PDF on Linux the document looks correct. If you try to copy text from this PDF and paste it in a text editor, the text appears as random symbols, e.g. empty squares.
Completed
Last Updated: 16 Nov 2021 11:45 by ADMIN

Hello Telerik team!

In the attachment, there are two PDFs, generated by the same template (also in attachment): one built under Windows, another one - under Linux (Docker). See red boxes as defects on the screenshot:

Text wrap issues

Text wrap issues

Dockerfile fragment:

# MS TrueTypeFonts install
RUN wget http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb -P ~/Downloads
RUN apt install -y ~/Downloads/ttf-mscorefonts-installer_3.6_all.deb

RUN apt-get install -y libc6-dev
RUN apt-get install -y libgdiplus
RUN apt-get install -y libx11-dev
RUN rm -rf /var/lib/apt/lists/*

 

Please help us to resolve these issues in Linux.

Completed
Last Updated: 4 Oct 2019 10:14 by ADMIN
The data coming from a JsonDataSource component has null values for a date field. Using the (IsNull, ??, IIf) to check for null does not seem to work. For example: =IIF(Fields.actualWorkHrs Is NULL, "T", "F") always returns false even when there are null values in the actualWorkHrs field.
Unplanned
Last Updated: 25 Apr 2024 06:03 by ADMIN

If cells grow or shrink, if there are hidden cells, any time a report section grows vertically, the next section/table is not respecting the growing of the previous item and text prints in the wrong spot or the table overlaps the previous table.

A potential workaround is to manually convert the troublesome tables to lists where possible.

Unplanned
Last Updated: 6 Jan 2025 19:06 by Jose

Currently, the desktop viewers don't allow adding custom headers to their requests to the service.
In HTML5-based web viewers, this is possible through the AjaxPrefilter event.

Unplanned
Last Updated: 9 Feb 2022 13:36 by ADMIN
When exporting a Table with hierarchically organized dynamic groups, in CSV export only the first detail data row is rendered. Thus, great part of the data is ignored.
Unplanned
Last Updated: 7 Aug 2023 08:14 by Aldo
When I attempt to copy a table item in the EUD.NET, the table is not copied correctly. 
Usually, the first row stays as expected but the contents of the rows below it are pushed further top and the design ends up being messed up.
Planned
Last Updated: 20 Feb 2020 08:57 by ADMIN
Created by: SPARE GmbH
Comments: 0
Type: Bug Report
9
The report engine calculates firstly how many rows will be necessary to accommodate the cell content and then the binding is taken into account. For example, if initially 2 lines are needed for the value of the textbox, the final cell height will be equal to two lines although later the width will be increased and the text will fit in a single line.
Completed
Last Updated: 10 Nov 2021 16:55 by ADMIN
Release R3 2021 SP1
When using a report parameter of type Float, and there is no value for decimal places, or it is 0, it appears as if the parameter value passed to the runtime is converted to an integer value, and an "Invalid value for parameter <paramName>" is logged. 
Unplanned
Last Updated: 9 Aug 2022 07:51 by ADMIN

When the PDF rendering extension has its "enableAccessibility" setting set to true, the text in the produced document cannot be selected using the Select Tool from the Adobe Acrobat Reader context menu. The text can be selected in other PDF readers like Foxit PDF Reader. The text is also selectable in Adobe Acrobat Reader when the document is created without enabling the accessibility features.

Completed
Last Updated: 11 Nov 2021 15:51 by ADMIN
Release R3 2021 SP1
Float report parameter = 0 or negative whole number is returned as int and an exception is thrown in the viewer. The issue is observed only in .NET Core projects.
Unplanned
Last Updated: 14 Dec 2021 14:26 by ADMIN
I have a Crosstab with multiple dynamic detail columns and a Total column at the end. I can hide all the detail columns conditionally, based on a parameter value. The Totals are always visible. When there are more than two detail columns and I hide them, there is blank space left between the row headers and the totals of the crosstab.
Unplanned
Last Updated: 17 Feb 2022 12:16 by Vitaliy
After sending x requests, the setInterval delays for an additional 30 seconds, if the clientSessionTimeout is 1 minute. The interval is not changed, nor is it replaced with another internal. The set millisecond delay is also not changed. Generally, this happens once, the client expires, then the interval continues to send requests at the set interval.
Unplanned
Last Updated: 5 Mar 2025 15:43 by Dyan

If I put the following content in an HtmlTextBox, when I open the preview mode of the designer or look at it in the Html5 Report Viewer I get annoying extra gaps:

<p>Comment</p><p>Comment</p><ol><li>List</li><li>List</li><li>List</li></ol><p><br></p><p>Comment</p><p>Comment</p>

I tried to replace these <p>-tags with <div>-tags:

<div>Comment</div><div>Comment</div><ol><li>List</li><li>List</li><li>List</li></ol><div><br></div><div>Comment</div><div>Comment</div>

It helps. But there are some other tags that cannot be replaced (tags of ordered and unordered lists for example). And these gaps are still rendered. 

Unplanned
Last Updated: 6 Aug 2020 08:13 by ADMIN

When there are both ASCII characters and non-ASCII characters (such as Chinese) in the text box, the position of line wrapping in Linux Docker is incorrect. Some of the data get lost.

More information can be found in the forum thread TextBox's line wrap position is incorrect in docker.

Completed
Last Updated: 17 Jun 2022 08:49 by Thod
Release R1 2022 SP1

When using the latest version of the Kendo Default Theme:

<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-default@latest/dist/all.css" />

the export in the Blazor Report viewer does not work.

Meanwhile,  you can reference the older kendo CSS styles directly in the view with the ReportViewer. You may leave the new styles referenced on the layout page.  It works with:

<link rel="stylesheet" href="https://unpkg.com/@@progress/kendo-theme-default@4.26.0/dist/all.css" />

Completed
Last Updated: 19 Dec 2024 16:04 by ADMIN
Release 2025 Q1

Even though I set "parametersAreaVisible" to false, the parameter area is still visible. A bit of tweaking.

Let me make a change request in the telerikReportViewer-18.3.24.1112.js file:

function showParametersAreaIfNecessary(params) {
            parametersAreaNecessary = hasVisibleParameters(params) || !controller.isReportAutoRun();
            showParametersArea(parametersAreaVisible && parametersAreaNecessary);
        }

1 2 3 4 5 6