Telerik Forums
Reporting Forum
1 answer
177 views

Hello,

We are currently running a .net application for a client that is reliant on a previous Telerik version.

Would it be possible for us to get the installer for this specific version?  My Progress Control panel won't give any other versions to be installed than the latest and that won't come in question but we need this spesific version mentioned below

 I've added screenshot from Progress Control Panel which doesn't show but the latest version and not previous. 

Thank you in advance

 

The version in question:

Telerik Reporting - ProgressĀ® TelerikĀ® Reporting R2 2020 (14.1.20.513) 

 

Best regards,

Mika Nieminen

Lance | Senior Manager Technical Support
Telerik team
 answered on 08 Feb 2023
1 answer
116 views

reportsource is not available to configure if using .Net core version of TelerikReportDesinger

to test, just choose the reportsource option and nothing happens, not being possible to define.

follow screen demonstrating how to reproduce. the following dialog used to set is not displayed. Only in the .net core version does this happen.

Dimitar
Telerik team
 answered on 07 Feb 2023
1 answer
158 views

I have a report that includes a sub-report.  The sub-report is a list of events related to the report.

In standalone designer, when I preview the report, the sub-report's contents relate to the report correctly.  I think that's because the parameter value is set.

In production, running from an application (Asp.Net Core 5) the sub-report shows the events for the parameter set in the designer.  The main report contains the correct information.

Both report and sub-report use the same database connection and the same parameter name.

This seemed to start a few months ago.  Not when the reports were first created/deployed.

Any idea what's happening?

 

Thanks

Dimitar
Telerik team
 answered on 07 Feb 2023
1 answer
1.1K+ views
Hello, I have a business objects data source with a method that returns a JSON string. Is there a way to add this data object to the report designer such that it deserializes the JSON string to determine the available properties? I tried adding a JSON data source but it looks like the only source options are an external file or inline json text.
Momchil
Telerik team
 answered on 02 Feb 2023
1 answer
269 views

I have a report that I have populated programmatically with data.  The data in the detail section populates correctly.  I recently introduced a group into the report, but when I add a field (one of the detail fields) to the new group, the field is always blank.  I feel like there's some missing piece to setting the group values, but I can't find any examples online that mirror my scenario.

Here's how the report looks in the designer:

Here's the group configuration:

Here's where I'm setting the data into the table:


                        var table = report.Items.Find(pair.Key, true)[0] as Table;
                        if (table != null)
                        {
                            table.DataSource = data; // data is an List<Model>
                        }

The report doesn't actually group and the field in the group header is empty:

 

Momchil
Telerik team
 answered on 02 Feb 2023
1 answer
150 views

We are having an issue where HTML saved to a database from the Editor component in Kendo UI for Angular does not render correctly in a Telerik report.

These are the steps we are following:

  • An HTML string is retrieved from a database
  • The Import method is called on an HtmlFormatProvider object using the HTML string, returning a RadDocument object
  • The InsertDocument method is called on a RadFlowDocumentEditor object using the RadDocument object from the previous step
  • The Export method is called on a PdfFormatProvider using the RadDocument object and the bytes are served via a REST API as a memory stream

The HTML saved in the database renders correctly in the Kendo UI Editor component. However all of the CSS formatting and spacing (including fonts, etc.) is lost when the RadDocument memory string is loaded into the Angular Report Viewer.

Is this the expected behavior? Is it possible to render pure HTML in a RadDocument and present this to a user unaltered in the Report Viewer?

Dimitar
Telerik team
 answered on 01 Feb 2023
1 answer
997 views

I'm trying to implement the telerik reporting into a Blazor Hybrid app and it gives "The version of the Report Viewer '17.0.23.118' does not match the version of the Reporting REST Service '16.0.22.225'. Please make sure both are running same version." error. I guess this because of my backend telerik version and report viewer versions are different. I'm using an already build API so, is there any chance to downgrade the report viewer version to 16.0.22.225 ?

Todor
Telerik team
 answered on 31 Jan 2023
1 answer
424 views
I am hosting report service in .Net core web API. This API is behind authorisation.
Todor
Telerik team
 answered on 25 Jan 2023
1 answer
531 views

Hello,

 

I'm using Web Report Designer HTML 5 version 14.1.20.618 and when clicking any option that has to show up a modal (like edit Bindings), it shows the following error in Console:

 

Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'getBoundingClientRect')
    at get popUpDefaultPosition [as popUpDefaultPosition] (webReportDesigner:formatted:6890:74)
    at o.openPopUp (webReportDesigner:formatted:6975:28)
    at o.<anonymous> (webReportDesigner:formatted:7103:22)
    at Generator.next (<anonymous>)
    at a (webReportDesigner:formatted:6808:25)

 

I followed the setup tutorial and everithing is working fine but this feature.

The line that's causing the error is the first line of the function popUpDefaultPosition() in webReportDesigner.js

 

        get popUpDefaultPosition() {
            const e = this.kendoList.wrapper.find(".k-state-selected")[0].getBoundingClientRect();
            let t = this.popUpDefaultSize.width
              , i = this.popUpDefaultSize.height;
            const n = this.provider.GetService(s.a.WebDesignerEventsElement)
              , a = $(n).find("." + r.a.WebDesignerCanvasClassName).height();
            this.popUp && (t = this.popUp.wrapper.width(),
            i = this.popUp.wrapper.height());
            const o = {
                top: e.top - i / 2,
                left: e.left - t
            };
            if (o.top + i > a) {
                const e = a - (o.top + i);
                o.top = o.top + e
            }
            return o.top < 0 && (o.top = 0),
            o
        }

 

Any help will be appreciated

Dimitar
Telerik team
 answered on 24 Jan 2023
2 answers
253 views

Hi,

We want to upgrade from blazor reportviewer to Native Blazor Reportviewer, and so far the upgrade has ran smoothly.

However, we are still challenged on how to hide the document map that is toggled on automatically by default. 

First, we tried to hide the document with the following code:

<ReportViewer @ref=... 
            ServiceType=...
            ServiceUrl=...
            ReportSource=...
            DocumentMapVisible="false" --> Should this not hide document map when opening report?
            ParametersAreaVisible=...
            ViewMode=...
            ScaleMode=...          
            />

Unfortunately this did not work, but maybe there is another simple way of hiding the document map? 

Additionally, we have looked into another approach, where we have added a JS function to programmatically hide the button by clicking on the document map button on the reportviewer toolbar:

function reportViewerMapClick() {
    $(".k-i-dictionary-add").click();
}

We have tested the JS function above on a button, where it works:

<button OnClick="reportViewerMapClick()" type="button"> Hide Document Map </button>

But for this to truly work, we need to use this JS function on an event of some sort.

My question is therefore: Are there any simple and easy way of hiding the document map, when opening a report. And if not, are there any events available for when a report has finished loaded? 

Dimitar
Telerik team
 answered on 23 Jan 2023
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?