Duplicated
Last Updated: 21 Feb 2024 11:26 by ADMIN

We are trying to upgrade our front end to Angular 17.   When we set the telerik version to 17.2.23.1114, none of the reports open and we are getting the method not found error. 

This is the configuration in our telerik report project which runs .NET 6.

<PackageReference Include="Telerik.Drawing.Skia" Version="17.2.23.1114" />
<PackageReference Include="Telerik.Reporting.Cache.StackExchangeRedis.2" Version="17.2.23.1114" />
<PackageReference Include="Telerik.Reporting.Services.AspNetCore" Version="17.2.23.1114" />

Duplicated
Last Updated: 21 Feb 2024 07:37 by ADMIN
Created by: Steve
Comments: 5
Type: Feature Request
3

The CSV renderer ignores the visible state of elements in a report definition (sections, headers, footers, text boxes etc.) with the Visible property to false - either explicity or by binding.

This results in much redundant content in the CSV file, that is often not even the actual output/result data - which should be the primary focus of a format like CSV.

Being able to control the output brings much flexibility to the CSV feature. Though Reporting primarily has a focus on a more rich, visual display of data, having access to the same "raw" result set that a report would evaluate can be very useful, without having to try replicate through other means.

Binding the Visible property of elements to: = RenderingFormat.Name <> "CSV" would allow the choice of including what makes sense in the ouput, even allowing a different "view" of the data, which could contain just detail row fields or additionally, summary fields from group and report headers & footers.


Duplicated
Last Updated: 14 Feb 2024 13:48 by ADMIN
Created by: Hengky
Comments: 1
Type: Feature Request
1

It would be nice to have a query builder in the web report designer like in the stand alone report designer. 

Duplicated
Last Updated: 18 Jan 2024 15:39 by ADMIN

While some viewer options such as the pageMode, viewMode, etc. are already exposed and configurable through code, the parameters are not. This means that the viewer will always load the report with the default report parameter values which can troublesome.

For example, I need to be able to pass a JWT to a WebServiceDataSource inside my report and I use a report parameter for doing so. This works as expected when I use a simple report viewer but when the report is loaded by the Web Report Designer, it is not possible to pass a value from the front end where the designer is initialized.

Duplicated
Last Updated: 11 Dec 2023 09:18 by ADMIN

Since upgrade to openXML 3.0.0 we get exceptions at runtime when we want to create a report in XLS.

While a feature request has been filed here: https://feedback.telerik.com/reporting/1631967-openxml-renderings-should-work-with-documentformat-openxml-3-0-0-and-newer one could argue it is a bug. Anyway, i raise this issue here to have some extra attention to it.

System.TypeLoadException
  HResult=0x80131522
  Message=Could not load type 'DocumentFormat.OpenXml.Packaging.ImagePartType' from assembly 'Telerik.Reporting.OpenXmlRendering.2.7.2, Version=17.2.23.1114, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' due to value type mismatch.
  Source=Telerik.Reporting.OpenXmlRendering.2.7.2
  StackTrace:
   at Telerik.Reporting.OpenXmlRendering.Spreadsheet.Worksheet..ctor(Workbook workbook, WorksheetPart worksheetPart)
   at Telerik.Reporting.OpenXmlRendering.Spreadsheet.Workbook.AddWorksheet()
   at Telerik.Reporting.ExcelRendering.Report.Render(IWorkbook workbook)
   at Telerik.Reporting.OpenXmlRendering.Spreadsheet.SpreadsheetReport.Telerik.Reporting.Processing.IRenderingExtension.Render(Report report, Hashtable renderingContext, Hashtable deviceInfo, CreateStream createStreamCallback, EvaluateHeaderFooterExpressions evalHeaderFooterCallback)
   at Telerik.Reporting.Processing.ReportProcessor.RenderCore(ExtensionInfo extensionInfo, IList`1 processingReports, Hashtable deviceInfo, IRenderingContext renderingContext, CreateStream createStreamCallback)
   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.<>c__DisplayClass47_0.<RenderReport>b__0(SingleStreamManager sm)
   at Telerik.Reporting.Processing.ReportProcessor.RenderReportSafe(Func`2 renderCallback, String format, IRenderingContext renderingContext)
   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 Indato.Reporting.TelerikReports.<>c__DisplayClass1_0.<RenderReportAsync>b__0() in C:\Users\leosiepel\Source\Workspaces\Indato\Indato-Main\Indato.Reporting\TelerikReports.cs:line 42
   at System.Threading.Tasks.Task`1.InnerInvoke()
   at System.Threading.ExecutionContext.RunFromThreadPoolDispatchLoop(Thread threadPoolThread, ExecutionContext executionContext, ContextCallback callback, Object state)
Duplicated
Last Updated: 10 Nov 2023 13:46 by ADMIN
Currently, adding custom HTTP request headers to the requests sent by the Blazor Report Viewer is not supported.   I would like this feature added so I may send an anti-forgery token and other values specific to my application in the header.   I'm not able to use the Blazor Report Viewer without this feature.
Duplicated
Last Updated: 06 Nov 2023 14:33 by ADMIN

Need to allow Excel Export with 10.1.16.615 version on FIPs enbled

Hi Team,

I had tried with the provided post as below with DocumentFormat.openXML.dll verison (2.5) but not working .

please help to resolve this ASAP.

===

Based on what you described and the ticket info, I am assuming that you are getting this error when you render a report in the Excel 97-2003 (XLS) format. Is that correct?

Unfortunately, this is a known limitation of the Excel 97-2003 rendering, and exporting a report to XLS in FIPS-enabled environments will fail. Considering this, I suggest choosing one of the following options for exporting reports to Excel:

  • Exporting the report to the newer XLSX format. (See exporting in XLSX)
  • Disabling FIPS.

If choose the first option, you can disable the older Excel rendering format so that it is not available as an option when the report is displayed in a report viewer. For example, the following code can be put into the web.config/app.config of the project:

<configuration>

  <configSections>
    <section
        name="Telerik.Reporting"
        type="Telerik.Reporting.Configuration.ReportingConfigurationSection, Telerik.Reporting"
        allowLocation="true"
        allowDefinition="Everywhere"/>
  </configSections>

    ...

  <Telerik.Reporting>
    <extensions>
      <render>
        <extension name="XLS" visible="false">
        </extension>
      </render>
    </extensions>
  </Telerik.Reporting>

   ...

</configuration>

I hope this helps, please let me know if you have any additional questions. Thank you for trying Telerik Reporting!

Regards,
Dimitar
Progress Telerik

 
Duplicated
Last Updated: 28 Sep 2023 12:57 by ADMIN
Created by: Mateusz
Comments: 1
Type: Feature Request
0
In web report designer Edit bindings are just two simple text field.
It would be nice to have some support when choosing values, for example some DropDownList with available options.
Like in standalone application
https://docs.telerik.com/reporting/designing-reports/report-designer-tools/desktop-designers/tools/edit-bindings-dialog
Duplicated
Last Updated: 28 Sep 2023 12:56 by ADMIN

Currently the interface for `IReportSourceResolver.Resolve` only allows for a synchronous implementation of `Resolve`. It'd be nice if the interface allowed for an asynchronous implementation, too.

This is in reference to Telerik Reporting API Server with a custom report source resolver.

Duplicated
Last Updated: 01 Aug 2023 12:47 by ADMIN
Created by: Dali
Comments: 0
Type: Feature Request
1
Having columns draggable in design-mode to let user to re-arrange and add/remove the table columns.  Without this feature, I need to delete the table from the report, and then insert the table again when business user want to add/remove/re-arrange column to/from the table. 
Duplicated
Last Updated: 28 Jul 2023 13:23 by ADMIN

When I conditionally hide a TextBox in a table, I got unwanted spaces between the hidden boxes.

In my example below I have 30 records as seen in the first table.

In the second table I have the same data, but conditionally formatting it to hide based on the following:

= Fields.Column1 > 2 and Fields.Column1 < 28

Notice the space that shows between 02 and 28.

Duplicated
Last Updated: 11 May 2023 15:36 by ADMIN
Provide a NPM package with the necessary types to make the React Report Viewer work correctly in .tsx files.
Duplicated
Last Updated: 24 Feb 2023 09:19 by ADMIN

Hello,

in the WebReportDesigner it is currently only possible to add a TypeSelector to a StyleRule. (see screenShot: "WRD_StyleRule_Add_Selector.png").

Interestingly, when a report already contains a StyleSelector, it is possible to edit and save the changes, this is great :-), (see screenShot: "WRD_StyleRule_Edit_StyleSelector.png").

Would be great if we could add a StyleSelector ;-).

 

Best regards

Alexander Schneider

 

Duplicated
Last Updated: 31 Mar 2022 09:56 by ADMIN
Created by: David
Comments: 1
Type: Feature Request
1
MAUI would truly benefit from a reporting engine. While MAUI with Blazor could supposedly use your Reporting engine, that is less straightforward than such an engine working directly with MAUI.