Unplanned
Last Updated: 16 Jun 2021 06:27 by ADMIN
I display the Html5 Report Viewer in a Kendo Tab. When I close the viewer's tab and resize the browser window, the following error related to the viewer occurs in the browser console:
kendo.all.js:105032 Uncaught TypeError: Cannot read property 'find' of null
    at init.toggle (kendo.all.js:105032)
    at P (telerikReportViewer:9)
    at Object.<anonymous> (telerikReportViewer:9)
    at Object.trigger (telerikReportViewer:9)
    at Object.trigger (telerikReportViewer:9)
    at se (telerikReportViewer:9)
    at Object.setDocumentMapVisible (telerikReportViewer:9)
    at b (telerikReportViewer:9)
    at E (telerikReportViewer:9)
    at o (telerikReportViewer:9)
Completed
Last Updated: 24 Feb 2021 10:04 by ADMIN
Release R1 2021 SP1

The following error may be thrown when trying to render a report in PDF under .NET 5 in the Linux systems:

"SEH":"System.ArgumentOutOfRangeException: Index and length must refer to a location within the string. (Parameter 'length')
          at System.String.Substring(Int32 startIndex, Int32 length)
          at Telerik.Reporting.Paging.TextBox.MeasureText(String text, TextFormat format)
          at Telerik.Reporting.Paging.TextBox.CreateContent(InitializationContext initContext)
          ...

The same reports work correctly in Windows.

Unplanned
Last Updated: 08 Feb 2021 13:12 by ADMIN

In some cases, when the path of the file is used as a Value of the PictureBox, the WMF is not displayed in PrintPreview or in the printed report. The workaround is to embed the image by selecting the file as a Value:

1. Go to the Value property of the PictureBox and click on the three dots (...)

2. In the File name field, type *.* and Enter.

3. Select the WMF file.

Unplanned
Last Updated: 11 Feb 2021 10:20 by ADMIN
When you try to select a file for the report source, the white spaces in the generated path are URL encoded (%20) and therefore the report is not found.  Manually replacing the %20 in the path with white spaces solves the issue.
Unplanned
Last Updated: 12 Feb 2021 12:17 by ADMIN
The WMF file is not rendered correctly in PrintPreview/PDF when using System.Drawing.Imaging.Metafile. 
Unplanned
Last Updated: 18 Feb 2021 16:00 by ADMIN
Created by: Tony
Comments: 0
Category: Reporting
Type: Feature Request
1
It will be useful if an option for setting the ExternalStyleSheets property through an URL is added.
Unplanned
Last Updated: 19 Feb 2021 19:41 by ADMIN

When applying the property Docking with either of the following values will cause the Visual Studio Report Designer to squeeze the table down to 0 width:

  • Top
  • Fill
  • Bottom

While the value 'Right' will cause the table to be rendered outside of the report-section on the left side. This is reproducible with the example report CryptoCurrencies.cs.

Completed
Last Updated: 15 Sep 2021 14:27 by ADMIN
Created by: Bernard
Comments: 2
Category: Reporting
Type: Feature Request
1

Hello, 

 

I can see that we can operate over a file definition using save, open, and save as. It would also be nice to be able to download the report definition as well. 

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.

Unplanned
Last Updated: 16 Mar 2021 06:25 by ADMIN
When previewing the report in the WPF report viewer I get the above-mentioned error. This issue occurs when using .NET 5 based projects but works correctly with .NET Framework.
Unplanned
Last Updated: 16 Mar 2021 16:17 by ADMIN
After expiring the default timeout, the Standalone designer does not log to Report Server again.
Unplanned
Last Updated: 18 Mar 2021 09:59 by ADMIN

I have configured Asp.NET Core 5 IReportServiceConfiguration in DI for ReportsControllerBase with ReportServiceConfiguration.ReportingEngineConfiguration set to IConfiguration with custom IConfigurationProvider providing ConnectionStrings which can change in runtime so the provider notifies about configuration changes via IChangeToken.

But the updated ConnectionStrings are not propagated to the service.

To fix it, I have made this hack:

                reportEngineConfigurationChange = engineConfiguration.OnChange(() =>
                {
                    telerikConfigurationManagerReset();
                    configuration.ReportingEngineConfiguration = engineConfiguration;
                });

which listens to IConfiguration changes and calls TelerikConfigurationManager.Reset (via reflection) and sets configuration again.

It would be nice if this would be implemented on Your side, please.

 

Completed
Last Updated: 12 May 2021 10:44 by ADMIN
Release R2 2021
Reports with Document Map may be exported in PDF format without the bookmarks from the legacy ASP.NET Viewer. The same reports get exported correctly from the Standalone designer and the Html5 Viewer.
Under Review
Last Updated: 28 Jun 2021 09:10 by ADMIN
Created by: Frantisek
Comments: 11
Category: Reporting
Type: Bug Report
1

Hello

 

I have problem with visual studio auto close when I'm working in reporting designer.

When I'm working in reporting designer and do about 5 changes, Visual studio freezes and after few monents is restarted and I loose all my work.

It is really frequented problem and I can hardly work with reporting designer.

 

In Windows Event Viewer I everytime find this exception that referes to problem in GetAggregateFunctions().

Application: devenv.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.NullReferenceException

Server stack trace: 
   at Telerik.Reporting.Processing.AggregateFunctionHelper.GetAggregateFunctions(IServiceProvider provider)
   at Telerik.Reporting.Design.Common.ExpressionBuilder.CategoryAdapter.<GetAggregates>d__1b.MoveNext()
   at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
   at Telerik.Reporting.Design.Common.ExpressionBuilder.CategoryAdapter.FillAggregates(Category funcCategory, IServiceProvider provider)
   at Telerik.Reporting.Design.Common.ExpressionBuilder.CategoryAdapter.CreateHierarchy(IServiceProvider provider, Boolean isFieldsTreeVisible)
   at Telerik.Reporting.Design.Common.ExpressionBuilder.ExpressionBuilderDialog.LoadCategories(IServiceProvider provider)
   at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)
   at System.Runtime.Remoting.Proxies.RealProxy.EndInvokeHelper(System.Runtime.Remoting.Messaging.Message, Boolean)
   at System.Runtime.Remoting.Proxies.RemotingProxy.Invoke(System.Object, System.Runtime.Remoting.Proxies.MessageData ByRef)
   at Telerik.Reporting.Design.Common.ExpressionBuilder.ExpressionBuilderDialog+LoadCategoriesDelegate.EndInvoke(System.IAsyncResult)
   at Telerik.Reporting.Design.Common.ExpressionBuilder.ExpressionBuilderDialog.OnLoadCategoriesComplete(System.IAsyncResult)
   at System.Runtime.Remoting.Messaging.AsyncResult.SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
   at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage, System.Runtime.Remoting.Messaging.IMessageSink)
   at System.Runtime.Remoting.Proxies.AgileAsyncWorkerItem.DoAsyncCall()
   at System.Runtime.Remoting.Proxies.AgileAsyncWorkerItem.ThreadPoolCallBack(System.Object)
   at System.Threading.QueueUserWorkItemCallback.WaitCallback_Context(System.Object)
   at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
   at System.Threading.ThreadPoolWorkQueue.Dispatch()
   at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback()

Completed
Last Updated: 12 May 2021 10:43 by ADMIN
Release R2 2021
Created by: Geir
Comments: 0
Category: Reporting
Type: Bug Report
1

The SVG image is not rendered correctly. A sample report and the SVG can be found attached.

The designer outputs as on the picture below which is not correct:

Completed
Last Updated: 12 May 2021 10:44 by ADMIN
Release R2 2021
When you can add some NuGet packages as Telerik.Reporting in .NET Standard 2.0 project but Telerik.Reporting.OpenXmlRendering cannot. You can download the attached project. If you try adding Telerik.Reporting.OpenXmlRendering, the following error appears:
Package Telerik.Reporting.OpenXmlRendering 15.0.21.120 is not compatible with netstandard2.0 (.NETStandard,Version=v2.0). Package Telerik.Reporting.OpenXmlRendering 15.0.21.120 supports: netcoreapp2.0 (.NETCoreApp,Version=v2.0) ClassLibraryTest C:\Users\ntodorova\source\repos\ClassLibraryTest\ClassLibraryTest\ClassLibraryTest.csproj 1
Completed
Last Updated: 12 May 2021 10:43 by ADMIN
Release R2 2021
When creating a chart, in the values field, you cannot change the function being used. The dropdown list contains only undefined values.
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: 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: 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.