Unplanned
Last Updated: 29 Apr 2021 11:25 by ADMIN

When a textbox cannot fit on the current page and its Style.VerticalAlign is not set to Top, the textbox is pushed to the next page, although its KeepTogether property is set to false and its Value is null or empty.

This scenario usually happens when a textbox in a table grows vertically because the table contents also grow - it might be another nested table or any other data item. The solution is to either set the visibility of the textbox to false or set its Style.VerticalAlign to Top.

Under Review
Last Updated: 29 Apr 2021 10:59 by ADMIN

Dear Telerik,

We use Azure App Services to host the reporting engine API.

Azure App Services validate all incoming requests to ensure they come in with valid Bearer JWT tokens. Your suggested workaround of validating the tokens only on some requests in the application would require us to turn off built-in Azure validation, which elevates security risks.

Can you please ensure [authenticationToken] is added to ALL requests from the Angular tr-viewer to the API, not just some requests?

Please redesign the viewer to authenticate all its requests to the backend service. Including but not limited to the requests report viewer makes to download generated report documents as attachments by performing get document requests through window.open() or any other methods.

We appreciate your efforts to obfuscate such requests; however, these efforts need to be in addition and not instead of industry standard security practices.

Thank you very much,

Sergey Nosov
Sr. Integrator/Developer,
Calpine Energy Solutions

Completed
Last Updated: 29 Apr 2021 06:42 by ADMIN
Release R1 2021 SP1
Created by: Graham
Comments: 11
Category: Reporting
Type: Feature Request
4
When in a Report section an item (e.g. Crosstab) grows horizontally, it may introduce horizontal physical page breaks due to insufficient space. The corresponding horizontal page breaks would be multiplied across all the physical pages that would be normally generated (i.e. without horizontal paging). Usually, these extra pages will be blank. In most cases having an option to remove these blank pages would be very useful.
Declined
Last Updated: 28 Apr 2021 14:32 by ADMIN
Created by: Revanth
Comments: 1
Category: Reporting
Type: Feature Request
0

Hi, how to create variable column width in programmatically created table? means how to adjust the width of the column based on dynamic data?

Unplanned
Last Updated: 26 Apr 2021 06:37 by ADMIN

Hello, 

I am receiving the TypeError: $kendoHtmlEncode error in an Angular Report Viewer with the SystemJS. I am also using a .NET Framework (4.6.2) WebApi based Reporting REST Service. See the following screenshot of the error. 

Additionally, the Report Viewer UI is loading until the error is thrown and the report never loads as shown in the following screenshot.

Note that I am also using a separate process for running each project.

For additional reference, I have attached a sample that reproduces the error. See the following steps to run the sample locally.

  1. Open the 1515808.sln file in Visual Studio.
  2. Restore the NuGet Packages.
  3. Run the included WebApi project.
  4. Open the src/ClientApp folder in a command window.
  5. Run npm install from the CLI.
  6. Execute npm run serve from the CLI.

Please let me know if you need any additional information. Thank you.

Unplanned
Last Updated: 23 Apr 2021 15:03 by ADMIN

If you select valid values for a multi-value parameter and then deselect them manually in List_View, the last rendered report remains and there is no warning for invalid parameter values and the Preview button is not disabled. The problem occurs only in List_View for the multivalue parameter editors.

If you deselect the values with 'clear selection' the proper warning gets displayed.

Unplanned
Last Updated: 16 Apr 2021 11:36 by ADMIN

We pass Report Parameters as Strings and later convert them to Floats in the Report. This works fine on our production systems in Switzerland but fails on dev machines that use different system locales.

Unplanned
Last Updated: 15 Apr 2021 14:52 by ADMIN
It will be good to have a section similar to Page Header/Footer that can be placed on the left/right of each Page.
Unplanned
Last Updated: 14 Apr 2021 08:58 by ADMIN

1. Open report in the EUD.
2. Click "Export Template".
3. Select the open report and click "Next" and "Finish" to complete the wizard. The newly created template is visible in the User Templates as expected.
4. Click "Export Template".
5. Select the open report and click "Next" and "Finish" to complete the wizard. Warning is shown that this template exists. https://gyazo.com/91cac78640a551411c67df4abaecce78
6. Click "Yes" so that the template is replaced.

Expected: Template is recreated.
Observed: Error "Template build failed" https://gyazo.com/6ea75f7fba0674679a3c4df8ba73c307.
Unplanned
Last Updated: 12 Apr 2021 13:50 by ADMIN
In our report, we programmatically create the data sources available to the user. These data sources have a connection string that just reads "UNAVAILABLE". Then, when the report is viewed, I swap out the connection strings on the server-side.
This works fine for viewing reports, and it also is fine if I'm only using tables in the designer. However, if I try to use a PictureBox in the designer, I get an error that the PictureBox can't be displayed. It still works when I preview the report, but the editor ends up in a broken state.
From my debugging, it looks like rendering the PictureBox in the designer is trying to connect to the various data sources defined for the report. I don't understand why, since it's just a URL for an image.

Unplanned
Last Updated: 12 Apr 2021 11:46 by ADMIN
Created by: Pete
Comments: 2
Category: Reporting
Type: Feature Request
4
When the Name of a Report Parameter is changed, all references to it should be automatically change.
Unplanned
Last Updated: 09 Apr 2021 14:07 by ADMIN
Created by: jura
Comments: 3
Category: Reporting
Type: Feature Request
3

Hello,

I am working on Blazor reporting project and I have described the situation already in this post:

https://www.telerik.com/forums/report-viewer-and-web-designer-in-blazor#zGr6FO2mDEmkfLWIP_T_9A

To sum it up:

Please add .NET 5 js/css isolation to Blazor ReportViewer which will allow:

  • usage of more report viewers with different report engine services during the application lifetime (current design requires to load js/css globally from single report engine service and the js cannot be unloaded because it is not isolated in a module)
  • simpler usage of the viewer which should just require to set ServiceUrl and the js/css would be managed by the component itself
Unplanned
Last Updated: 07 Apr 2021 08:56 by ADMIN
The Telerik WPF Report Viewer component is not installed in the Visual Studio Toolbox. When you try to add it manually from the assembly 'Telerik.ReportViewer.Wpf.Design',  an error stating that there are no components in the assembly occurs.
Unplanned
Last Updated: 02 Apr 2021 15:32 by ADMIN
ADMIN
Created by: Katia
Comments: 4
Category: Reporting
Type: Feature Request
14
As HtmlTextBox item supports only a limited number of HTML tags and CSS attributes, it cannot be used for rendering a richly-formatted text. The solution can be to use a WebBrowser control (https://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx) in a user function to render HTML to a bitmap and display it in a PictureBox item as described in this KB article: http://www.telerik.com/support/kb/reporting/details/how-to-render-any-html-tags-in-reports

Let us know if you think providing such functionality out-of-the-box would be beneficial for your reports.

Leave here a comment with your thoughts on this subject or vote for this feature.
Unplanned
Last Updated: 02 Apr 2021 11:23 by ADMIN
Created by: Valerio
Comments: 0
Category: Reporting
Type: Bug Report
1
After the report is exported to DOCX from the obsolete report viewer, in Print Layout mode in Word, the image is not visible. It appears Read Mode or Web Layout. A sample application can be found attached.
Unplanned
Last Updated: 02 Apr 2021 11:14 by ADMIN
Created by: Rick
Comments: 4
Category: Reporting
Type: Feature Request
11

Would like my custom report resolver to implement async calls, so need

public async Task<ReportSource>Resolve(stringreport) supported in IReportResolver

 

Thanks!

 

  
Unplanned
Last Updated: 01 Apr 2021 06:14 by ADMIN

Example:
One panel contains two textboxes which both have property Docking set to 'Top'. If the first textbox expands when rendering as a result of overflowing content and property CanGrow set to 'True', the next textbox seems to be correctly positioned, but any item position below the panel with Docking set to 'Top' will be incorrectly positioned.

Completed
Last Updated: 30 Mar 2021 12:39 by ADMIN
Release R1 2021 SP2
The assembly Telerik.ReportViewer.Wpf.Design.dll doesn't contain the required WPF assemblies as resources, which results in the following error when trying to add a viewer from the Visual Studio item template:
Error: Can not resolve assembly from Telerik.ReportViewer.Wpf.Design.Resources.Telerik.Windows.Data.dll
Error: System.ArgumentException: The path is not of a legal form.at System.IO.Path.NewNormalizePath(String path, Int32 maxPathLength, Boolean expandShortPaths)at System.IO.Path.NormalizePath(String path, Boolean fullCheck, Int32 maxPathLength, Boolean expandShortPaths)at System.IO.Path.GetFullPathInternal(String path)at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)at Telerik.ReportViewer.Wpf.Design.Resources.GetResourceAssemblyName(ITracer tracer, String asmName)
Error: System.NullReferenceException: Object reference not set to an instance of an object.at Telerik.ReportViewer.Wpf.Design.ItemTemplateWizard.CheckTelerikWpfReferences()at Telerik.ReportViewer.Wpf.Design.ItemTemplateWizard.RunStartedCore(Dictionary`2 replacementsDictionary)
Completed
Last Updated: 30 Mar 2021 12:39 by ADMIN
Release R1 2021 SP2
Created by: Todor
Comments: 0
Category: Reporting
Type: Bug Report
2
SignalR jQuery plugin fails to load when the Angular Report Viewer is present in the same application. Removing the following lines from each instance in Reporting package resolves the issue but may introduce other issues:
 
window.$ = jquery;

window.jQuery = jquery;

For example, removing the above lines results in the error '$.throttle is not a function' in the 'continuous scroll' mode of the viewer. The workaround is to use the 'single page' mode.

 

Completed
Last Updated: 30 Mar 2021 12:39 by ADMIN
Release R1 2021 SP2

The application is published as a single-file application on Linux. Here is the stack trace of the error:

[21:52:53 ERR] Value cannot be null. (Parameter 'path1')
System.ArgumentNullException: Value cannot be null. (Parameter 'path1')
   at System.IO.Path.Combine(String path1, String path2)
   at Telerik.Reporting.Configuration.JsonConfigurationProvider.LoadConfiguration()
   at Telerik.Reporting.Configuration.JsonConfigurationProvider.InstantiateProvider()
   at System.Lazy`1.ViaFactory(LazyThreadSafetyMode mode)
   at System.Lazy`1.ExecutionAndPublication(LazyHelper executionAndPublication, Boolean useDefaultConstructor)
   at System.Lazy`1.CreateValue()
   at System.Lazy`1.get_Value()
   at Telerik.Reporting.Configuration.JsonConfigurationProvider.get_Instance()
   at Telerik.Reporting.Configuration.TelerikConfigurationManager.GetConfigurationProvider()
   at Telerik.Reporting.Configuration.TelerikConfigurationManager.get_ConfigurationProvider()
   at Telerik.Reporting.Configuration.TelerikConfigurationManager.GetReportingSection()
   at Telerik.Reporting.Configuration.ReportingConfiguration.get_Default()
   at Telerik.Reporting.Processing.RenderingExtensionManager.get_RenderingExtensions()
   at Telerik.Reporting.Processing.ReportProcessor.GetExtensionInfoCore(String name)
   at Telerik.Reporting.Processing.ReportProcessor.GetExtensionInfo(String format)
   at Telerik.Reporting.Processing.ReportProcessor.ProcessAndRender(String format, ReportSource reportSource, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)
   at Telerik.Reporting.Processing.ReportProcessor.ProcessAndRenderStateless(String format, ReportSource reportSource, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)
   at Telerik.Reporting.Processing.ReportProcessor.RenderReport(String format, ReportSource reportSource, Hashtable deviceInfo, CancellationToken cancellationToken)
   at Telerik.Reporting.Processing.ReportProcessor.RenderReport(String format, ReportSource reportSource, Hashtable deviceInfo)
   at HaliburtonSoftware.Reporting.Generation.GenerationProcessor.CreateReport(InstanceReportSource reportSource, String fileName, ReportFormat reportFormat)
   at HaliburtonSoftware.Reporting.Generation.GenerationProcessor.ProcessReport(String culture, String reportName, ReportFormat reportFormat, String fileName, IList`1 parameters, Hashtable deviceInfo)

I also had lots of issues trying to get the application version information of a single-file application and had to revert to using an environmental variable in the container.