Steps to reproduce:
1. Create a Blazor application;
2. Add Teleri.Reporting NuGet package;
3. Add Telerik.WebReportDesigner.Services Nuget package -> some of the app dependencies are broken.
Solution:
Refer the .NET Standard DLLs from C:\Program Files (x86)\Progress\Telerik Reporting <Version>\Bin\netstandard2.0.
As a full time developer I'm constantly switching between open documents.
It would be very nice if the Report Designer would support the standard Ctrl+Tab keyboard shortcut for switching between open tabs.
Sometimes the following unexpected behavior can be observed with the WinForms report viewer.
Steps to reproduce:
1. Run the WinForms application;
2. Select a value for the parameter and click on Preview.
The window's size is decreased.
For conditional sorting I use a formula like this:
=IIF(Parameters.SortBy.Value = 1, Fields.id, IIF(Parameters.SortBy.Value = 2, Fields.name, Fields.value))
This works perfect.
Now I would like to do the same with the sortings direction! Something like:
=IIF(Parameters.SortOrder.Value = NULL, ASC, IIF(Parameters.SortOrder.Value >= 0, ASC, DESC))
Sadly, the Direction-Field/Dropdown does not support formulas.
If the HTML5 Report Viewer gets hidden on renderingBegin(e, args) event and shown on renderingEnd(e, args) event, its toolbar is shown, but the contents are still invisible.
Code snippet that demonstrates the issue:
$("#reportViewer1")
.telerik_ReportViewer({
... initialization script goes here
renderingBegin: function (e, args) {
$("#reportViewer1").hide();
},
renderingEnd: function (e, args) {
$("#reportViewer1").show();
}
});
The built-in MultiSelect ComboBox offers the "autowidth: true" option. So we need the same for the SingleSelect ComboBox.
The popup element for both of these editors is the same. So please add this option because the lack of it is making us create a custom editor only for this reason.

When an HTML content is placed in nested block elements, it is displayed differently from the way the browser displays it.
For example, the following HTML:
<div><p>htmlTextBox1</p></div>is vertically displaced compared to the same content when not wrapped in another block element:
<p>htmlTextBox1</p>This image demonstrates the difference.
If there is a pageMode option, An error event is fired at initialization, even if no error occurred.
The problem can be reproduced with the HTML5 demo:
$("#reportViewer1")
.telerik_ReportViewer({
serviceUrl: "api/reports",
reportSource: {
report: "Telerik.Reporting.Examples.CSharp.ReportCatalog, CSharp.ReportLibrary",
parameters: {}
},
viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
pageMode: telerikReportViewer.PageModes.SINGLE_PAGE,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
enableAccessibility: false,
sendEmail: { enabled: true },
ready: function () { debugger; },
error: function (e, args) { debugger; }
});