Unplanned
Last Updated: 22 Jun 2022 14:54 by Charles

 In the Word rendering, there is sometimes space between the footer and the body of the document.

 

Completed
Last Updated: 04 Aug 2022 13:35 by ADMIN
Release R2 2022 SP1 (Latest Internal Build)
When I try and create Report1.trdp that already exists in the Web Report Designer definition storage, an Internal Server Error is thrown by Telerik.WebReportDesigner.Services when I debug the designer service. If I continue the execution, the existing Report1.trdp gets overwritten by the new one.
Unplanned
Last Updated: 28 Jun 2022 08:16 by Tommy
Bindings are not available when multiple report items are selected in the Web Report Designer
Unplanned
Last Updated: 11 Jul 2022 11:40 by Dali

Bindings to the TitleStyle property of a ToC section result in the following error:

 Bindings error - The value of property 'TitleStyle' is null

Unplanned
Last Updated: 22 Jul 2022 11:32 by ADMIN
Created by: Aleksandar
Comments: 4
Category: Reporting
Type: Bug Report
1

It takes 2+ seconds between "info" polls to the server. This should be a much smaller interval. Maybe .5 or .25 seconds.



Telerik's own ReportClient example shows a 500ms interval between info polls...

        private static byte[] GetDocument(ReportClient restServiceClient, string instanceId, string documentId)
        {
            bool documentProcessing;
            do
            {
                Thread.Sleep(500);// wait before next Info request
                documentProcessing = restServiceClient.DocumentIsProcessing(instanceId, documentId);
            } while (documentProcessing);

            byte[] pdfDocumentBytes = restServiceClient.GetDocument(instanceId, documentId);

            return pdfDocumentBytes;
        }

Unplanned
Last Updated: 15 Jul 2022 08:21 by Blair
Created by: Blair
Comments: 0
Category: Reporting
Type: Feature Request
1

In some cases, the textbox width will be nearly but not enough to fit the whole string and as a result, the textbox will grow and will thus push the items below it further down.

In Page Sections, this may even result in some of the items that are near the bottom not being displayed at all.

It would be great if there was a warning when the width is not enough so that such scenarios are avoided.

There should also be an option to disable the warnings.

 

 

Unplanned
Last Updated: 26 Jul 2022 08:10 by Dominik

If you add the 'kendo.common.min.css' that is required for the Html5 Viewer to the page with the Web Report Designer, the latter Menu styles get broken.

Due to this, if you need to have both the viewer and the designer in the same project and cannot have scoped styles, the appearance of one of them will be broken.

Unplanned
Last Updated: 01 Aug 2022 06:57 by Dominik
Please add a workspace preferences option to not save the report when Preview is initialized in the Web Report Designer
Unplanned
Last Updated: 04 Aug 2022 09:08 by Shannon
Created by: Shannon
Comments: 0
Category: Reporting
Type: Feature Request
1

Consider adding functionality that allows for loading Assets into the Asset Manager from code. 

I would prefer to store assets in a database and load them up for a user.

Makes more sense than randomly loading them from whatever computer you are working on.

Completed
Last Updated: 14 Sep 2022 14:06 by ADMIN
Release R3 2022

Some corner case page size value force report processing to create an invalid page clipping during paging. 

Workaround: If you encounter such scenario, please experiment with changing the page size to another value, which is close to the original one.

Completed
Last Updated: 14 Nov 2024 11:02 by ADMIN
Release 2024 Q4

Currently,  you can select multiple report items with the CTRL when you run the Web Report Designer on Mac, however, this is interpreted as a right-click. Please, check the attached video.

The correct behavior should be by using CMD.

Unplanned
Last Updated: 25 Aug 2022 12:01 by James
I produce a lot of Accessible PDF documents that include many unique images - hundreds in most cases. Each image has alt text descriptions in it in the EXIF metadata of the image file itself. Most of the documents I generate a based on a one or two page template used for each record ID. The images are loaded programmatically based on the ID number for the template. Right now, with Accessibility Enabled, Telerik cannot read the image EXIF data. It would be ideal if it could be configured to pick up the descriptions already inside the image file itself. This applies to the stand alone Report Designer and the Visual Studio version.
Unplanned
Last Updated: 19 Aug 2022 12:19 by Jyoti
When the SkipBlankPages property of the report is set to true, it throws a console error in the browser when there is no significant content in the report:
Completed
Last Updated: 14 Sep 2022 14:34 by James
Release R3 2022

Steps to reproduce the problem:

1. Open the attached report in EUD
2. Ensure its RuntimeSettings contain parameter "EnableAccessibility" set to True or add the setting before opening the designer in its configuration file
3. Preview the report and export it to PDF


EXPECTED:
The produced PDF is tagged (accessible) - check it in Acrobat Reader's file properties in the bottom left corner. The file size should be ~155KB
OBSERVED:
The produced PDF is not tagged (accessible). Its size is ~123KB.
Declined
Last Updated: 29 Aug 2022 18:54 by James
Many documents have repeating information that is irrelevant and needs to be untagged, or artifacted, so that assisstive technology does not share the information multiple times. Common examples of this situation are headers, footers, page numbers, and decorative images. In most cases, it is not necessary to read these document elements on each page, so we untag the information to prevent repetition for the person reading the document with assistive technology. Is there a way to mark a report section - e.g., the page header or page footer - as Untagged or Artifacted, and have those tags be exported to the PDF? It would save a ton of time having to manually go through several hundred pages and untagging them manually.
Completed
Last Updated: 09 Nov 2022 13:31 by ADMIN
Release R3 2022 SP1
Created by: Xorcist
Comments: 1
Category: Reporting
Type: Bug Report
1

Using the Default or Material Kendo Theme (v5.6.0) with the Telerik HTML5 Report Viewer, the Boolean parameter which uses a Checkbox for it's display, is not visible (this may affect other themes as well).

I confirmed an older version v4.40.0 has a height and width set for the k-checkbox CSS class as such:

https://unpkg.com/@progress/kendo-theme-material@4.40.0/dist/all.css

.k-checkbox {
    border-radius: 2px;
    margin: 0;
    padding: 0;
    width: 16px;
    height: 16px;
    line-height: initial;
    border-width: 2px;
    border-style: solid;
    outline: 0;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
}

while the latest v5.6.0 does not:

https://unpkg.com/@progress/kendo-theme-material@5.6.0/dist/all.css

.k-checkbox {
    margin: 0;
    padding: 0;
    line-height: initial;
    border-width: 2px;
    border-style: solid;
    outline: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    flex: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    -webkit-appearance: none;
}

The checkbox is actually on the page, but is so small it's basically invisible and completely unusable, requiring a manual CSS override to fix.

Unplanned
Last Updated: 23 Aug 2022 12:57 by ADMIN
Created by: Tommy
Comments: 1
Category: Reporting
Type: Feature Request
1
I don't seem to be able to place an HTMLTextBox into a Table cell using the Web Designer... Is this not possible yet?
Unplanned
Last Updated: 07 Sep 2022 13:17 by ADMIN

When exporting to PDF from Telerik Report Designer the software creates a list of flat links for each TOC entry, but the links are separated in the structure from the TOC Label. While a good start, it would be better to use a main TOC tag under which each line in the TOC would receive a TOCI (Table of Contents Item) tag. Each TOCI would contain the label and link for the respective item. Attaching a few examples to assist.

<TOC> Table of contents element is an element that contains a structured list of items and labels identifying those items; has its own discrete hierarchy.
<TOCI> Table of contents item element is an item contained in a list associated with a table of contents element.

References:

https://www.hhs.gov/sites/default/files/pdf-tagging.pdf (page 29).

https://www.pdflib.com/pdf-knowledge-base/pdfua/the-pdfua-standard/ 

Unplanned
Last Updated: 30 Aug 2022 10:14 by ADMIN

When exporting the tags for the document's Table of Contents Telerik Report Designer exports TOC leaders as distinct tags, requiring that they be removed when completing the accessibility tagging for the document. Leaders - the ellipses found in the Table of Contents (e.g., Introduction ...................... Page 3) between the TOC item and the page number will be read by assistive technology as "dot dot dot dot dot..." etc. They need to be deleted from the tag tree. Please Artifact them or (preferably) NOT tag them on the export. Thanks.

Reference: 

https://www.levelaccess.com/pdf-table-of-contents/

https://www.w3.org/TR/2014/NOTE-WCAG20-TECHS-20140408/pdf.html 

Unplanned
Last Updated: 01 Sep 2022 12:10 by Satya
Some horizontal page breaks force report processing to create an invalid page clipping during paging. 

In my report, when the content fits in the page width, the PDF document is generated correctly. When there is a horizontal page break though, the content of the pages after the first one is clipped.