Completed
Last Updated: 13 Dec 2019 15:20 by ADMIN
Release 2020\R1
Created by: Ikbum Kim
Comments: 0
Category: Reporting
Type: Bug Report
1
Changing the Telerik Report Viewer pageMode setting through PageMode method does not work correctly
Unplanned
Last Updated: 12 Dec 2019 14:13 by Adam
The problem is not getting the error via Dot Net programming, but the complete layout destruction of the report as a result of the fact that a picture (in our case a thumbnail of a provider) is unavailable. Catching the report error is not an option. It is too complicated and even if we succeed  in obtaining the error, it will be very complicated to remove the unavailable url on the fly and re-render the report again. 

This seems to be a "known issue" for about 8 years!

My question: Is it possible to keep the remaining report "intact" if such an error occurs? This shouldn't be too difficult for the development team..
Unplanned
Last Updated: 09 Dec 2019 17:55 by ADMIN
The report is not exported correctly in PDF when the Font is Sakkal Majalla and Text Align is Right. If you set the Text Align to left, everything works as expected.
Unplanned
Last Updated: 05 Dec 2019 15:22 by ADMIN
Created by: Michael Bouhuys
Comments: 0
Category: Reporting
Type: Bug Report
1

When merging the ReportViewer's WPF theme dictionaries from the DLL in App.xaml, the VS2019 Designer fails due to a problem with a ZoomComboBoxStyle definition.

This causes all Telerik UI for WPF control's styles fail to load in the Visual Studio designer.

WORKAROUND

Instead of App.xaml, merge the ReportViewer's theme dictionary closer to the control.

For example in the ReportViewer's direct parent:

<Grid>
<Grid.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- Moved from app.xaml -->
<ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Summer/Telerik.ReportViewer.Wpf.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Grid.Resources>

<tr:ReportViewer x:Name="ReportViewer1" ReportSource="{Binding CurrentReport}" />
</Grid>

Unplanned
Last Updated: 05 Dec 2019 10:27 by ADMIN
Let the user configure whether the Standalone designer to start initially in Interactive or PrintPreview mode. Currently, it starts always in Interactive mode and this may cause slow down or even hanging if the previewed report is huge.
Unplanned
Last Updated: 04 Dec 2019 10:13 by ADMIN
Created by: Neli
Comments: 0
Category: Reporting
Type: Bug Report
2

When you try to send the report through the SendMailMessage functionality but an exception is thrown, the report will disappear. If you click on Refresh and try again with fake data, the exception will be thrown but the report will remain. If you prefer to refresh it automatically, you can use the error event:


var viewer = $("#reportViewer1")
.telerik_ReportViewer({
    serviceUrl: "api/reports/",
    reportSource: {
        report: "Report Catalog.trdp",
    },
    error: function (e, args) {
        console.log("This event handler will be called after a page of the report is ready.");
        console.log("The error message is: " + args);
        viewer.refreshReport();
    },
    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
    scale: 1.0,
    enableAccessibility: false,
    sendEmail: { enabled: true }
}).data("telerik_ReportViewer");

Unplanned
Last Updated: 25 Nov 2019 12:27 by ADMIN
If the data retrieval class is implementing IDisposable, the engine never invokes Dispose method. This can result in unexpected and unwanted data caching. Consider to invoke the IDisposable.Dispose if the data retrieval class is referenced by type (this.objectDs.DataSource = typeof(MyDataLayer))
Completed
Last Updated: 18 Nov 2019 15:43 by ADMIN
An exception is thrown when trying to configure Authentication parameters in WebServiceDataSource: Response status code does not indicate success: 400 (Bad Request)
Unplanned
Last Updated: 15 Nov 2019 15:28 by ADMIN
Created by: Martin
Comments: 0
Category: Reporting
Type: Feature Request
4

As in Ticket with ID 1440072 requested we are looking for a funktionallity to send Reports via E-Mails with the WPF ReportViewer. As only the HTML-5 ReportViewer currently supports the E-Mail sending we would request the feature for WPF as well.

 

Best Regards,

Martin

Unplanned
Last Updated: 15 Nov 2019 12:15 by ADMIN
In some cases, the report width is bigger than the page width. Horizontal scroll appears.
Completed
Last Updated: 15 Nov 2019 08:34 by ADMIN
Created by: Luca Galbiati
Comments: 37
Category: Reporting
Type: Bug Report
80

The print functionality cannot be used in Google Chrome 77.0.3865.75 (lastest update).  The following error is displayed in the console of the browser: Resource interpreted as Document but transferred with MIME type application/pdf.

As an alternative, you can use other web browsers for printing. 

Unplanned
Last Updated: 15 Nov 2019 07:57 by ADMIN
This may result in clipping the maximum value of the Radial axis label, as it is part of the Plot Area. Normally, introducing padding will remove clipping.
Unplanned
Last Updated: 15 Nov 2019 06:47 by ADMIN
Created by: Scott Waye
Comments: 0
Category: Reporting
Type: Feature Request
4
When a date is set as a report parameter in the HTML5 viewer, it formats the parameter as a JSON date using a timezone.  Where no time is specified this results in a time part added to the date when received at the server.  This is a problem, especially for browser in a negative offset zone, e.g. US, where upon the date goes to the previous day.  Please add support for parameter types of date, where no time is present and no conversion is done anywhere.
Unplanned
Last Updated: 14 Nov 2019 11:02 by ADMIN
Created by: Graham
Comments: 0
Category: Reporting
Type: Bug Report
2
MultiValue parameter cannot be selected/ unselected in iOS 13.2 
Declined
Last Updated: 08 Nov 2019 16:06 by ADMIN

in our solution, we store the trdx reports designed with Standalone Designer as xml strings in our database,
and render them to pdf in the background services by using  Telerik.Reporting.XmlSerialization.ReportXmlSerializer.Deserialize

the new web based designer would be a good addon to integrate report design directly into the appliciation.

but the current preview version of webreportdesigner needs to be configured with a FileStorage.
it is possible to override the GetReport and SaveReport functions in a custom ReportDesignerController and load the report from a string (db in our case),

but since the ReportJsonSerializer is an iternal class, it is not possible to create a json response and send it to the webeditor.

so it would be helpfull, either to make the ReportJsonSerializer a public class so it can be used to convert the report manally to json, or extend the

whole thing to load the reports from strings directly.

 

Declined
Last Updated: 07 Nov 2019 16:15 by ADMIN
Created by:
Comments: 1
Category: Reporting
Type: Bug Report
1

i down  last new version  r3 2019  sp1 trial, create  Simple example for  binding table

eg:

reporting design tool  render result:


 

 

 

Unplanned
Last Updated: 05 Nov 2019 14:42 by ADMIN
If the Kendo SASS based theme is used the resize handle and collapse/expand icon has some UI issies.
Unplanned
Last Updated: 04 Nov 2019 12:53 by ADMIN
If a user desires to send a report by email, the recipient will receive the message from a generic email and if the recipient wants to respond, the response will go to a mailbox that is not monitored. On the other hand, if we use the "From" field and we try to do a "legal spoofing," some email servers will send our messages to spam or simply block them. It could be great to have an option to ask users their email password in the moment when they click on the button to send a report via email. In this way we can send the information in the field "From" and the password entered to the SMTP server.
Unplanned
Last Updated: 04 Nov 2019 12:51 by ADMIN
Unplanned
Last Updated: 04 Nov 2019 10:03 by ADMIN
Created by: Chris
Comments: 0
Category: Reporting
Type: Bug Report
2

We are using a background image in our report. We noticed that on the Mac, the graphs were rendering very small when exporting to PowerPoint.

I found this thread that said to set the ‘UseMetafile’ rendering device setting to False. After doing so, it fixed the graph issue but then broke the background image, for both Windows and Mac PowerPoint. The background image is now very small.