Hello,
How can Angular Report Viewer be localized? I found only this article - https://docs.telerik.com/reporting/html5-report-viewer-localization. But Angular Report Viewer doesn't expose telerikReportViewer variable to the global scope or as module export. Only the ReportViewer constructor function is exported (from telerikReportViewer.js):
module.exports = {
ReportViewer: telerikReportViewer.ReportViewer
};
And I don't see any way to get access to telerikReportViewer.sr object from application code.
Hello,
I've just updated to Reporting R3 2018 and I now have an exception when generating a PDF from a report, when a ReportProcessor instance is created. The exception message is the following:
[A]Telerik.Reporting.Configuration.ReportingConfigurationSection cannot be cast to [B]Telerik.Reporting.Configuration.ReportingConfigurationSection. Type A originates from 'Telerik.Reporting, Version=12.1.18.620, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' in the context 'Default' at location 'C:\Temp\Temporary ASP.NET Files\vs\293ea1ac\b0f39161\assembly\dl3\a336f798\0099b611_b108d401\Telerik.Reporting.dll'. Type B originates from 'Telerik.Reporting, Version=12.2.18.912, Culture=neutral, PublicKeyToken=a9d7983dfcc261be' in the context 'Default' at location 'C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Telerik.Reporting\v4.0_12.2.18.912__a9d7983dfcc261be\Telerik.Reporting.dll'.
Unfortunately, the release notes doesn't say anything about a change on this.
Can you please explain what needs to be done to make it work again?
I have a sql datasource. The query creates variables such as ( declare @LastYearVal Decimal(28,12) ), and a calculated result is assigned to this variable for further processing later in the query.
When configuring the sql datasource, the parameter @LastYearVal is automatically picked up by the wizard, and I can select the type as "decimal".
Doing so will set @LastYearVal to be Decimal(29,0) at the report run time. (This i could see through the sql profiler)
Due to the variable being Decimal(29,0) instead of Decimal(28,12), it loses decimal points of the calculated result that is getting assigned to it.
Is there a way to configure the sql datasource, so that it sets the above parameter as Decimal(28,12) and can retain the decimal points correctly ?
Hi Support,
This problem happens in the Server Report Viewer and also in our application from the upgrade to the Telerik Report 2018.
Look de style generate height: 25.5px . !!!
<div class="trv-report-page" style="height: 25.5px; width: 1146px;">
Example:
Image attach
Thank You
Sérgio
Hi Team,
How to adjust Telerik reporting width automatically fit in 24" inch screen ?
I had go through this link but it was WPF Report https://www.telerik.com/forums/start-report-with-zoom-to-width-as-default.
Please help on this.
Hi
I'm using HTML5 report viewer.
According to the following post I should be able to retrieve the current report parameters using this code:
var
viewer = $(
"#reportViewer1"
).data(
"telerik_ReportViewer"
);
var
currentParams = viewer.reportSource().parameters;
This method seems to return the last submitted values parameters only and not the 'current' values. For example the default start and end date parameter values in my report depend on another report-type parameter. This works well displaying the required default values in the parameter window. However the code above doesn't return these current values unless the values are actually submitted with "Preview".
Can you suggest a work around to retrieve the current displayed values of each parameter even before they are submitted to Telerik reporting. I already have custom editors and I could attach my own code to monitor the current values - but is there a better recommended way?
Thanks in advance.
Ian
I am looking for different options to use report viewer in Reactjs Component. Please help if somebody has implemented the same.