Under Review
Last Updated: 23 Jul 2021 11:52 by ADMIN

I would like to be able to access the report template layout using the ref so that I can save the report template outside of the designer.  Similar to this:

 

<button type="button"class="btn btn-light btn-sm" @onclick="Save">Save</button> <WebReportDesigner @ref="designer1" DesignerId="wrd1" ServiceUrl="/api/reportdesigner" Report="Dashboard.trdp" ToolboxArea="new ToolboxAreaOptions() { Layout = ToolboxAreaLayout.Grid }" PropertiesArea="new PropertiesAreaOptions() { Layout = PropertiesAreaLayout.Categorized }" /> @code { WebReportDesigner designer1; void Test() { var layout = (byte)designer1.Report.Layout;

} }

Completed
Last Updated: 16 Jul 2021 08:45 by ADMIN
Release R2 2021 SP1 (Latest Internal Build)
Created by: Sparky
Comments: 3
Category: Reporting
Type: Bug Report
1

Generated PDFs do not have bookmarks in R2 2021 unless there is a TOC section in the report.

By setting the device info setting "ProcessItemActions", the generated PDFs have bookmarks again.

var reportProcessor = new Telerik.Reporting.Processing.ReportProcessor(); 
var reportSource = new Telerik.Reporting.UriReportSource();
reportSource.Uri = "some Uri";           
var deviceInfo = new System.Collections.Hashtable();
deviceInfo["ProcessItemActions"] = true;
reportProcessor.RenderReport("PDF", reportSource, deviceInfo);

Completed
Last Updated: 16 Jul 2021 08:45 by ADMIN
Release R2 2021 SP1 (Latest Internal Build)
Created by: Daniel
Comments: 0
Category: Reporting
Type: Bug Report
1
When I place an HtmlTextBox in a table column and set its top padding, the padding is respected when previewing in the designer and when the report is rendered in PDF. When previewing in the Html5 Viewer the padding is ignored.
Completed
Last Updated: 16 Jul 2021 08:45 by ADMIN
Release R2 2021 SP1 (Latest Internal Build)
In the Report properties of the Web Report Designer when you open Layout -> PageSettings, there is no input or other control where you may enter or select any values or measure units for the Margins.
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()

Declined
Last Updated: 22 Jun 2021 10:52 by ADMIN

 

I am using Telerik Report Designer 15.1.21.512

I have created a Web Service Datasource:

The returned Raw String in Preview Data in the Wizard:

Raw

{
 "Ordinal": 0,
 "Cardinality": 1,
 "Tuples": [
   {
     "Ordinal": 0,
     "Members": [
       {
         "Name": "Total ProfitLossBalance"
       }
     ]
   }
 ]
}

Everything appears to work, however the Datasource returns an Error:

System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
   bei Telerik.Reporting.Processing.WebServiceDataSource.WebServiceClient.SendCore(IWebServiceRequestSettings settings, AuthenticationHeaderValue authHeader, HttpClient httpClient, HttpClientHandler httpClientHandler)
   bei Telerik.Reporting.Processing.WebServiceDataSource.WebServiceClient.Request(WebServiceDataSource processedDS)
   bei Telerik.Reporting.Processing.WebServiceDataSource.WebServiceDataProvider.GetRemoteRawData(WebServiceDataSource processedDS)
   bei Telerik.Reporting.Processing.WebServiceDataSource.WebServiceDataProvider.get_RawData()
   bei Telerik.Reporting.Processing.WebServiceDataSource.WebServiceSchemaAdapter.AddDataMeasures(SimpleDataModel model)
   bei Telerik.Reporting.Processing.Data.SimpleSchemaAdapterBase.Fill(SimpleDataModel model)
   bei Telerik.Reporting.Processing.Data.SimpleDataProvider`1.GetSchemaCore()
   bei Telerik.Reporting.Processing.Data.DataProvider`1.Telerik.Reporting.Processing.Data.IDataProvider.GetSchema()
   bei Telerik.Reporting.Data.Design.DataSourceService.GetLocalSchema(IDataSource datasource, IDataProviderContext dataProviderContext)
   bei Telerik.Reporting.Data.Design.DataSourceDesignerBase.Telerik.Reporting.Design.Interfaces.IDataSchemaProvider.GetSchema()
   bei Telerik.Reporting.Data.Design.DataSourceService.GetSchemaFromContext(Object context)
   bei Telerik.Reporting.Data.Design.DataSourceService.Telerik.Reporting.Design.Interfaces.IDataSourceService.GetCurrentDataItemSchema(Boolean getFromParentRecursively)
   bei Telerik.Reporting.Design.DataExplorerControl.<>c__DisplayClass2.<RefreshDataSource>b__0()
Completed
Last Updated: 16 Jun 2021 13:57 by ADMIN
When groupings in a cross tab or merged row table span multiple pages the actual row label should be carried over to new page along with a label of some sort (if desired) to mark group is being continued from previous page.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1
User is migrating from Silverlight where he had direct access to it.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1

A possible solution would be to expose a ParametersAreaLoaded and ParametersAreaUpdated events with the needed arguments.

This will make migration from Silverlight easier. There the user has a direct access to them through the ReportViewerModel.

Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1
When you preview a report with frozen table columns/rows and the viewer is in FitPageWidth scale mode the column/row headers move on scrolling. Here is a link to a short muted video demonstrating the issue.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1
The freezing functionality works only for Chromium based browsers.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1
The JsonDataSource component escapes characters like quotation marks in the Web Report Designer, which makes the JSON invalid.
Completed
Last Updated: 16 Jun 2021 10:56 by ADMIN
Release R2 2021 SP1
Created by: Israel
Comments: 0
Category: Reporting
Type: Bug Report
1
1. A custom report template is checked for getting the data source information needed
2. A new empty Telerik report is created
3. The report is client-side filled with those predefined data sources using the Telerik Javascript Shell (EditorCommand.NewItem for creating them and SetPropertyValue for filling in the details).

This approach has been working well for me until getting updated to the R1 2021 SP1 release (15.0.21.224), or the following versions, which are now unable to show the datasources fields in the explorer at first. However, manually adding a new component into the canvas makes the datasource tree to be updated then.
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)
Unplanned
Last Updated: 15 Jun 2021 08:21 by ADMIN
Created by: Oleksandr
Comments: 1
Category: Reporting
Type: Bug Report
1
Hello , I am trying to localizate export dictionary.  I couldnt find  "key : value"  в viewerObject.stringResources

Declined
Last Updated: 11 Jun 2021 07:22 by ADMIN

Figure 1 report is generated using the data source in figure 2. Data in column "Value2" is mapped to the column Text in the generated report.


In the below-generated report, text in row one "Default CUS for CDV" is truncated. A feature to make the user know there is more data to be shown will be great.

Figure 1

Figure 2

 

 

So, Adding an option to display an indicator such as “...” for truncated strings so that the viewers get to know there is more information to be displayed
Or

Provide an option to absolute break (display until last possible character) of the string rather than word-wrapping if there’s more content than the text box width.

Unplanned
Last Updated: 10 Jun 2021 23:12 by Tommy
Please add the ability to specify the graph series colours dynamically via binding expressions instead of hardcoding predefined values in palette or conditional formatting. 
lineSeries.Style.LineColor = "= Fields.HexColour";
Unplanned
Last Updated: 03 Jun 2021 10:13 by ADMIN

Setting the ParametersAreaVisible and DocumentMapVisible to False in the Xaml, or in the initialization code of the WpfReportViewer doesn't hide the corresponding areas.

The issue is reproducible in .NET Core and .NET Framework.

Declined
Last Updated: 01 Jun 2021 14:59 by ADMIN
Created by: Rupinder
Comments: 1
Category: Reporting
Type: Feature Request
0

Hi Team,

Thanks for your regular support.

I Want to hide the GroupFooterSection if I don't have any data to be displayed(zero records found case).

Please let me know the solution for the above case.

Regards

Ausfleet Team.

 

 

Unplanned
Last Updated: 01 Jun 2021 13:27 by ADMIN
Created by: Dmytro
Comments: 0
Category: Reporting
Type: Bug Report
1
Text is not correctly aligned when a private font is used and bold is registered in the first place. Please, check this video that demonstrates the behavior.