Completed
Last Updated: 21 Sep 2021 10:26 by ADMIN
Release R3 2021

The ObjectDataSource component in the Web Report Designer does not have complete design-time support. The major things that are missing:

  • there is no dedicated wizard that helps to discover and select business classes and appropriate data retrieval methods.
  • its data schema is not retrieved from the REST service and since it's unavailable, the Edit Expression dialog does not populate its Fields collection.
Declined
Last Updated: 20 Sep 2021 13:27 by ADMIN

The Margins property cannot be set in the Blazor wrapper of the Web Report Designer:

 

Unplanned
Last Updated: 20 Sep 2021 11:08 by ADMIN
Created by: Epep
Comments: 3
Category: Reporting
Type: Feature Request
2
One of the main features the clients require when exporting the reports to XLS or XLSX is to have the page width already set to 1 page. But for none of these exporting options, this is possible, unless you intercept somehow the export functionality prior to rendering the document to the client
Unplanned
Last Updated: 20 Sep 2021 10:57 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: Reporting
Type: Feature Request
4
It would be nice to have 3D chart capabilities such as those found in the WPF ChartView or even the KendoUI charts.  The Telerik Reporting charts , although feature rich, are rather plain looking.
Completed
Last Updated: 20 Sep 2021 10:28 by ADMIN
Created by: Mhd.Ahd
Comments: 2
Category: Reporting
Type: Feature Request
4

Do you have an updated road-map or plan to support Web assembly (WASM), especially Blazor? You already published Blazor articles in your blogs.

It will be a good idea to add a new report viewer based on Blazor, protecting the parameters between the viewer and its API controller.

Also, will be a very good idea to start your online report designer (like alternative products), based on web assembly

Completed
Last Updated: 20 Sep 2021 10:23 by ADMIN
Created by: Clinton Smyth
Comments: 1
Category: Reporting
Type: Feature Request
8
We'd like to distribute the standalone report tool to our clients and provide data through a web service. We don't want to have to redistribute a dll everytime we make new data available.

The standalone report tool should be able to query our webservice for what data is available and then allow the client user to create reports from it.  i.e. obtain list of table names dynamically as well as their column names and data.

A possible solution is to allow the tool to view and interact with classes in an external assembly that are dynamically generated with Reflection.Emit.
Unplanned
Last Updated: 16 Sep 2021 11:44 by ADMIN
Any time I double-click in the HTML text box in the attached report and then click the text to start editing it, I get this error:

---------------------------
Telerik Report Designer
---------------------------
Unable to cast COM object of type 'System.__ComObject' to interface type 'mshtml.IHTMLTxtRange'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{3050F220-98B5-11CF-BB82-00AA00BDCE0B}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
---------------------------
OK   
Unplanned
Last Updated: 16 Sep 2021 07:15 by ADMIN

The issue is caused by an issue in the SQL DataSource Wizard that doesn't provide the correct Data Provider name. In the wizard on the first page, the Data Provider must be MySql.Data.MySqlClient, but the option is limited only to MySql.Data. Since the engine cannot determine the type of the data provider by that name, it falls back to System.Data.SqlClient and claims that "Port" is not a supported keyword.

The workaround is to avoid using the SQL DataSource wizard and edit the data source properties directly in the properties grid. You can check the attached silent video that demonstrates how to do so.
Completed
Last Updated: 15 Sep 2021 14:27 by ADMIN
Created by: Bernard
Comments: 2
Category: Reporting
Type: Feature Request
1

Hello, 

 

I can see that we can operate over a file definition using save, open, and save as. It would also be nice to be able to download the report definition as well. 

Declined
Last Updated: 10 Sep 2021 06:33 by Rahul
Created by: Mhd.Ahd
Comments: 2
Category: Reporting
Type: Feature Request
0
When using multi-child select statement like the below:

SELECT ORG, C1, C2, ... FROM (
   (SELECT X FROM Y WHERE Z1 = xxx AND Z2 = :param1 AND DATE BETWEEN :param2 AND :param3) C1,
   (SELECT X FROM Y WHERE Z1 = yyy AND Z2 = :param1 AND DATE BETWEEN :param2 AND :param3) C2,
   ...
)
Then binding with report parameter will be like:
param1 = rpt_param1
param2 = rpt_param2
param3 = rpt_param3

The an error occurred while excuting the query in the datasource wizard.
Also, some time the wizard accepts the query but the preview mode will display the same error.
The error is "ORA-01008 : Not all variables bound"

______________________________________
Workaround: Don't use the same query parameter in more than one child select statement. Create new datasource parameters per each select statement; then bind them all to the same report parameter. 

SELECT ORG, C1, C2, ... FROM (
   (SELECT X FROM Y WHERE Z1 = xxx AND Z2 = :param11 AND DATE BETWEEN :param12 AND :param13) C1,
   (SELECT X FROM Y WHERE Z1 = yyy AND Z2 = :param21 AND DATE BETWEEN :param22 AND :param23) C2,
   ...
)
Then binding with report parameter will be like:
param11 = rpt_param1
param21 = rpt_param1
param12 = rpt_param2
param22 = rpt_param2
param13 = rpt_param3
param23 = rpt_param3
______________________________________
Products:
* Report Designer v2014.Q2
* Oracle Database 10g1, 10g2 or 12c
* Oracle Client: ODTwithODAC 12.1.0.1.0 Or Less
Unplanned
Last Updated: 06 Sep 2021 12:42 by ADMIN

The parameter editors with Available Values are pushed down by the buttons 'clear selection'/'select all'. This makes them misaligned with respect to the parameters without Available Values:

Completed
Last Updated: 06 Sep 2021 12:26 by ADMIN
Release R3 2019 SP2
The Preview button when the parameters are visible appears in the top left corner of the parameters area and overlaps with the parameter editors.
Unplanned
Last Updated: 31 Aug 2021 10:51 by ADMIN

The padding statement works when the report is run in the designer, but not in the HTML MVC report view.

It looks like the padding is applied to the second line and not where it is placed.

In other words, it works when viewed in the designer, but not in the website.

= "<span style='padding-top: 30px'>" + Fields.FirstName + " " + Fields.LastName + 
IIf(Len(Fields.Title)>=1, ", " + HtmlEncode(Fields.Title), "") + "</span><br>" +
"<u>Email</u>: " + IsNull(Fields.EmailAddress, "") + "<br>" +
"<u>Phone</u>: " + IsNull(Fields.Phone, "") + "<br>" +
"<u>Cell</u>: " + IsNull(Fields.Cell, "")

//Designer

//HTML Viewer

Unplanned
Last Updated: 27 Aug 2021 14:49 by ADMIN
Consider the following scenario: if you have a filter in the table which is based on a date report parameter. However, based on the selected date, there are no records in the table, you see the No pages to display message in the viewer, however, the parameters are is grayed out and you are not able to select a new date until you don't refresh the report. If you set the SkipBlankPages to False, the behavior is not reproduced. As a workaround, you can set the NoDataMessage property of the table.
Completed
Last Updated: 25 Aug 2021 13:44 by ADMIN
In WebReportDesigner for Blazor application I cannot find the already set WebServiceDataSource parameters. When I try to create a table using the table wizard and select the existing WebServiceDataSource, I don't see any Data Source Fields.
Unplanned
Last Updated: 20 Aug 2021 12:38 by ADMIN
1. Create a report that has a text box with an interactive action Toggle Visibility or Sorting.
2. Before opening the report with the HTML5 viewer, add
                    interactiveActionExecuting: function (e, args) {
                        args.cancel = true;
                    },
to its' initialization
3. Open the report with the HTML5 report viewer.
4. Click the text box with the interactive action

Expected: nothing happens
Actual: The report content becomes hidden
Unplanned
Last Updated: 19 Aug 2021 13:33 by ADMIN
When you navigate between the pages it's working well the first 2-3 times but after that, when you try to navigate to a page, you are redirected each time to the first page.
Unplanned
Last Updated: 11 Aug 2021 13:28 by ADMIN
Created by: Andreas
Comments: 1
Category: Reporting
Type: Feature Request
10

I need SVG background images which are rendered as vectors to PDF (not rasterized) - just like with PictureBoxes.

Unplanned
Last Updated: 10 Aug 2021 15:37 by ADMIN
If you try setting a BackgroundColor in a graph through a Binding, this won't work if the expression a field from datasource.
Unplanned
Last Updated: 10 Aug 2021 12:17 by ADMIN
Changing the ColumnCount in the Web Report Designer is not visually affecting the report layout. The functionality still works as expected but in the report layout, there is no visual indication about the number of columns that the report has.