Completed
Last Updated: 19 Dec 2024 16:04 by ADMIN
Release 2025 Q1
Created by: Tobby
Comments: 0
Category: Reporting
Type: Bug Report
3
With the 18.3.24.1112 version of Reporting, there is a memory leak when rendering reports to PDFs. 
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);
        }

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

I have overridden the SendMailMessage method of the ReportsController to implement the email-sending functionality of the web report viewers.

However, despite the method being implemented in my controller, inheriting from the ReportsControllerBase class, the method is never hit, and instead, I get a 501 Not Implemented response.

Completed
Last Updated: 19 Dec 2024 16:04 by ADMIN
Release 2025 Q1
Created by: Dmytro
Comments: 1
Category: Reporting
Type: Bug Report
7
After updating to 2024 Q4 it has became impossible to extract text from rendered PDF files. Well, we can extract it but it's just abracadabra. The same happens if we open a file in Acrobat Ready and try copying some text. It is copied but is non-sensical. Try with the attached PDF. This worked fine with prev versions.
Completed
Last Updated: 19 Dec 2024 16:04 by ADMIN
Release 2025 Q1

When rendering a report that displays an image through the PictureBox item with binary data in multiple threads within a Docker container, the following error is thrown:

Message=Concurrent operations from multiple threads on this type are not supported.
  Source=DockerBlazorApp
  StackTrace:
   at Test.Reporting.Services.ReportService.<>c.<RenderReport>b__4_0(Object innerSender, ErrorEventArgs eventArgs) in C:\Users\dnikolov\Downloads\dockerblazortestappfortelerik\DockerBlazorTestAppForTelerik\DockerBlazorApp\Services\ReportService.cs:line 49
   at Telerik.Reporting.Report.OnError(Object sender, ErrorEventArgs e)
   at Telerik.Reporting.Report.RaiseError(Object sender, ErrorEventArgs e)
   at Telerik.Reporting.Processing.Report.RaiseReportError(ProcessingElement sender, ErrorEventArgs args)
   at Telerik.Reporting.Processing.Report.RaiseError(ProcessingElement sender, Exception exception)
   at Telerik.Reporting.Processing.ProcessingElement.Process(IDataMember dataContext)
   at Telerik.Reporting.Processing.ReportSectionBase.ProcessItem()
   at Telerik.Reporting.Processing.DetailSection.ProcessItem()
   at Telerik.Reporting.Processing.ReportItemBase.ProcessElement()
   at Telerik.Reporting.Processing.ProcessingElement.Process(IDataMember dataContext)

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

My connection string contains spaces:

Data Source=(local)\SQLEXPRESS;Initial Catalog=AdventureWorks;Integrated Security=SSPI

When I use the functionality 'Build new data connection', the designer throws the following exception:

 

 

Unplanned
Last Updated: 19 Dec 2024 09:40 by James Glinsek

If I update a StyleRule from the Report Explorer in SRD.NET, the property grid becomes empty afterward, and I have to de-select the rule by selecting another style rule, then select it again to edit another style.

Unplanned
Last Updated: 19 Dec 2024 09:19 by James Glinsek

When using the Standalone Report Designer for .NET, the PropertyName dropdown is empty when creating a new style rule with AttributeSelector.

The issue is not present with the Standalone Report Designer for .NET Framework.

Unplanned
Last Updated: 11 Dec 2024 20:14 by JeffVisibilEDI

At the moment, a whole words are removed from text until it becomes short enough to fit in the text box, and this is the only available behaviour.

There should be an option to put ellipsis or clip the text to the textbox width instead (like CSS text-overflow "ellipsis" and "clip").

There's also an older discussion here:
https://www.telerik.com/forums/request-ability-to-show-an-ellipsis-in-a-text-box-when-the-text-overflows-the-available-space

Under Review
Last Updated: 11 Dec 2024 15:08 by ADMIN
Created by: Paolo
Comments: 0
Category: Reporting
Type: Feature Request
1

Inside telerik designer for reports actually if you wish to use an RGBA color, you would need to manually write it.

And generally color choise / picking its a little old style.

-> Would be nice to modernize the UI for color management and implement a COLOR PICKER.

Unplanned
Last Updated: 11 Dec 2024 12:42 by Scott Waye
The OpenXML formats should expose a device setting such as the ValidateXmlCharacters setting in the WPFXAML/WPFXAMLInteractive Device Information Settings that specifies whether Unicode characters that are not XML compliant, should be allowed in the report or a built-in utility function that I can invoke on the data fields to filter out those invalid characters.
Unplanned
Last Updated: 10 Dec 2024 12:41 by Scott

We have text box that needs to show all that it can without growing.

If text box is set to CanGrow = false. Text box does not grow as expected however it will wrap the text.

Setting text box to TextWrap = false and CanGrow to either true or false. When rendered using GDI+ it renders as expected.  When rendered using Skia it appears to always wrap the text.

Reports are deployed to a Linux docker image which is configured to use the Skia rendering engine.

Screenshot output using GDI+

Screenshot output using Skia

 

Unplanned
Last Updated: 05 Dec 2024 15:01 by Mark

For example, if I set the accent color to be "Navy blue", the quick access toolbar's icons will be pretty much invisible:

Unplanned
Last Updated: 05 Dec 2024 09:49 by Trevor

The report parameters selection options cannot be navigated through by the keyboard.

The select all and clear selection options can be accessed through the TAB but individual values are not focusable.

The DateTime picker of the DateTime parameters cannot be opened with the keyboard as well.


Completed
Last Updated: 03 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.
Duplicated
Last Updated: 03 Dec 2024 12:22 by Bob
Created by: Cesar
Comments: 2
Category: Reporting
Type: Feature Request
3


                <Telerik.ReportViewer.BlazorNative.ReportViewer
                    @ref="reportViewer"
                    ServiceType="ReportViewerServiceType.REST"
                    PageMode="PageMode.SinglePage"
                    ServiceUrl="@(ServiceUrl)"
                    @bind-ReportSource="@ReportSource"
                    AuthenticationToken="@(AuthToken)"
                    ScaleMode="(ScaleMode)ReportSetItem.Report.ScaleMode"
                    @bind-ParametersAreaVisible="@ParametersAreaVisible"
                    Scale="1.5">
                </Telerik.ReportViewer.BlazorNative.ReportViewer>

The variable, ParametersAreaVisible, is set to false. The report viewer is still showing the parameters area. I went back to the designer and set all parameters to Visible = false. When I did this, the parameters area is not displayed.

The report viewer should respect what is bound to ParametersAreaVisible.

Duplicated
Last Updated: 02 Dec 2024 13:02 by ADMIN

I'm using Angular 15 LTS

core.mjs:8400 ERROR Error: Uncaught (in promise): TypeError: perspectiveManager.dispose is not a function
TypeError: perspectiveManager.dispose is not a function
    at Object.dispose (telerikReportViewer.js:8692:32)
    at TelerikReportViewerComponent.ngOnDestroy (telerik-report-viewer.component.js:60:27)
    at executeOnDestroys (core.mjs:5976:32)
    at cleanUpView (core.mjs:5886:9)
    at destroyViewTree (core.mjs:5712:21)
    at destroyLView (core.mjs:5864:9)
    at RootViewRef.destroy (core.mjs:11804:9)
    at ComponentRef.destroy (core.mjs:12226:23)
    at RouterOutlet.deactivate (router.mjs:2624:28)
    at ActivateRoutes.deactivateRouteAndOutlet (router.mjs:2999:32)
    at Object.dispose (telerikReportViewer.js:8692:32)
    at TelerikReportViewerComponent.ngOnDestroy (telerik-report-viewer.component.js:60:27)
    at executeOnDestroys (core.mjs:5976:32)
    at cleanUpView (core.mjs:5886:9)
    at destroyViewTree (core.mjs:5712:21)
    at destroyLView (core.mjs:5864:9)
    at RootViewRef.destroy (core.mjs:11804:9)
    at ComponentRef.destroy (core.mjs:12226:23)
    at RouterOutlet.deactivate (router.mjs:2624:28)
    at ActivateRoutes.deactivateRouteAndOutlet (router.mjs:2999:32)
    at resolvePromise (zone.js:1255:35)
    at resolvePromise (zone.js:1209:21)
    at zone.js:1322:21
    at _ZoneDelegate.invokeTask (zone.js:450:35)
    at Object.onInvokeTask (core.mjs:24197:33)
    at _ZoneDelegate.invokeTask (zone.js:449:64)
    at Zone.runTask (zone.js:218:51)
    at drainMicroTaskQueue (zone.js:639:39)
    at ZoneTask.invokeTask [as invoke] (zone.js:536:25)
    at invokeTask (zone.js:1710:22)

This needs to be fixed ASAP, it's causing isues when the report page is being destroyed.

Unplanned
Last Updated: 29 Nov 2024 08:17 by Valerio

I use as background color of a TextBox light green (128,255,128). It appears as expected in all renderings except XLS (old Excel 97-2003). In XLS the color is grey (128,128,128).

I observe the same issue when modifying the RGB numbers in some boundaries - the color in XLS is always grey. There are RGB values rendered as expected though.

The issue reproduces with TRDP and CS reports in the corresponding Report Designers.

Duplicated
Last Updated: 28 Nov 2024 08:17 by ADMIN

Hello,

when i set Visible=false for some columns in a table, there is a white space between this columns.

How can i prevent that?

Designer (Standalone):

Preview:

Thanks in advance

Unplanned
Last Updated: 26 Nov 2024 14:55 by ADMIN
Scheduled for 2025 Q1

Adding the "Telerik.ReportViewer.WinUI.Themes/Themes/Generic.xaml" theme to a WinUI project causes existing AppBarButtons to grow in size because it overrides the AppBarButtonContentHeight setting.

The report viewer theme should not override the styles of the default WinUI controls.