Telerik Forums
Reporting Forum
3 answers
248 views

Posted 9 hours ago (permalink)

Hello,

I used the trial version Q3 2009 for a while and made some reports with it, most crosstab reports and some straight forward reports.
Yesterday i diceded to buy the new Q1 2010 premuim set and deinstall the trial version and installed the licended (dev) version.

After using the upgrade wizard no one of the reports are working anymore.
The first problem is this warning for each report.

Warning 1 'Public Property DataMember() As String' is obsolete: 'Please use ObjectDataSource as DataSource and set its DataMember instead.'

After trying to fix it i decided to build a new report from scratch and when i use the SqlDataSource to connect to a database/table
the same warning appear.

This is the code from the designer

--------

'Report1 

' 

Me.DataMember = ""

Me.DataSource = Me.SqlDataSource1

----------
I  searched the KB but didnt find a answer.
So anyone who knows this problem please tell me the solution.

Kind Regards

Ferry Engels

Neli
Telerik team
 answered on 04 Dec 2019
1 answer
285 views

Hi there,

I am in the midst of designing a line chart where i need to calculate the difference between some of the fields of  the consequent rows. 

For eg: The object data source have a field of datetime. I want to find the difference between the datetime of the first row data and the second row data.

More like , = First(Fields.DateTime) - Second(Fields.DateTime) . Where the second means the next row or second row.

I tried using PREVIOUS data function but it is not working in my telerik version. Unfortunately i cant find the correct expression to do this nor i can add a data field in the data level itself. Is there any expression to do this requirement  ? 

Thanks in advance

 

    

Neli
Telerik team
 answered on 03 Dec 2019
6 answers
488 views

We want to separate report layout from data generation logic. 

Our data generation logic is a class like this:

 

class Generator

{

     public Data Generate(/* parameters here*/);

}

 

Where Data is like this:

 

class Data

{

     public List<RowType1> List1;

     public List<RowType2> List2;

     // other collections

}

 

In order to feed this data to a report definition (created in Standalone Report Designer),the only option seems to be ObjectDataSource. However, it only supports one collection at a time. Thus, we need multiple  ObjectDataSource-s to expose all collections. This will result in multiple calls to Generator.Generate(), which looks really problematic.

 

Is there any way to do this elegantly with Telerik Reporting, while avoiding multiple calls to report generation logic and avoiding UI/logic mix?

Dmytro
Top achievements
Rank 1
 answered on 03 Dec 2019
1 answer
177 views

I want to disable the default export feature and trigger a custom download when the export is selected. I can disable the default execution by 

args.handled = true;

Now I want to access an external service from the parent context. However the parent context is not available inside the exportBegin event. Is there a way I can achieve this?

 

 

 

 

Todor
Telerik team
 answered on 02 Dec 2019
4 answers
1.2K+ views

Hello,

as usually I have a table in my report.

In this case it is a table who shows travelling expenses.

And now I want to export the table datas in a csv file.

But the output is not that what I want.

Please see the attached file!

It is a jumble of datas with Layout information textBox1,textBox3,textBox2, and so on.

The column headings should appear only in the first line of the csv file.

I also have some textboxes with content Format("created on: {0:dd/MMM/yyyy HH:mm} ", Now()) and  "Reisekosten Report" in the report header, which should not appear in the csv file.

To make it short: How can I influence the output?

 

Best regards

Simon

 

Todor
Telerik team
 answered on 02 Dec 2019
6 answers
399 views

Hello, 

Using inline parameter in web Service Data Source works only when I put the parameter directly like in image 1. If I put the parameter with a expression like in image 2 the response errors like in image 3. Image4 is the working report with the parameter value set 29 directly.

This is the Report.cshtml that I using:

<link href="//cdn.kendostatic.com/2019.1.115/styles/kendo.common.min.css" rel="stylesheet" />
<link href="//cdn.kendostatic.com/2019.1.115/styles/kendo.blueopal.min.css" rel="stylesheet" />

<script src="/api/reports/resources/js/telerikReportViewer"></script>
<style>
    #reportViewer1 {
        position: absolute;
        left: 5px;
        right: 5px;
        top: 50px;
        bottom: 5px;
        overflow: hidden;
        font-family: Verdana, Arial;
    }
</style>



<div id="reportViewer1">
    loading...
</div>

<script>
        $(document).ready(function () {
            $("#reportViewer1")
                .telerik_ReportViewer({
                    serviceUrl: "/api/reports/",
                    reportSource: {
                        report: "@ViewBag.Report",
                        parameters: {
                            idEvento: 29
                        }
                    },
                    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
                    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
                    scale: 1.0
                });
        });
    </script>
Guilherme
Top achievements
Rank 1
 answered on 28 Nov 2019
1 answer
234 views
We have purchased the license for telerik devcraft very recently for our product development . Recently we have stuck with telerik report integration with angular 7 . We have followed the steps which is mentioned in the below link
 https://docs.telerik.com/reporting/angular-report-how-to-use-with-angular-cli 

But there is no luck in finding the solution .

Issue:- We have developed simple api for fetching the data. HTTP GET verb is used in the api. From angular application we are able to make call to the api and api is responding the json result but the same is not rendering in the browser .
Todor
Telerik team
 answered on 27 Nov 2019
4 answers
223 views

I am implementing Telerik reporting in my already writen WPF Project. The Project has only microsoft WPF controls but when I make a report with telerik reporting and add resource dictionary sources from Telerik.ReportViewer.Wpf.Themes.dll in APP.XAML  file it effects all my Microsoft controls in entire project. I need solution that limit telerik themes to its report control only. Please guide me with detail I am newbie in Telerik reporting, Thanks

I am using telerik reporting R2 2019 version.

Code

 

APP.XAML

<Application x:Class="BMS.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             Startup="Application_Startup" DispatcherUnhandledException="Application_DispatcherUnhandledException" 
        
             SessionEnding="Application_SessionEnding" Exit="Application_Exit" >
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/System.Windows.xaml" />
                <ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.xaml" />
                <ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.Input.xaml" />
                <ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.Windows.Controls.Navigation.xaml" />
                <ResourceDictionary Source="/Telerik.ReportViewer.Wpf.Themes;component/Themes/Fluent/Telerik.ReportViewer.Wpf.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>

This Code effect all my micrsoft controls

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

I am using alll references from this folder only.

C:\Program Files (x86)\Progress\Telerik Reporting R2 2019\Bin

 

 

 

 

muhammad
Top achievements
Rank 1
 answered on 27 Nov 2019
1 answer
292 views

Hi,

We have UWP app that contains WebView element to show Telerik report. The WebView has HTML5ReportViewer which communicates via Telerik Rest Service to show the report. There are two questions I have in UWP.

- First question is how to download report?

- Second question is how to print the report(with having some printer settings in UWP)?

Todor
Telerik team
 answered on 26 Nov 2019
14 answers
647 views
Hey

I have the Angular 7 report viewer running, and we can load single reports no problem, we can't see the selection pane to pick different reports.   How do I enable the selection pane.  According to page:  https://docs.telerik.com/reporting/angular-report-viewer-api-options  what option do I have to enable to get the selection pane enabled, it's not "parameters" or "parameterEditors" as we've tried settings them exactly as described and it doesn't work.

Thanks
Veronika
Telerik team
 answered on 26 Nov 2019
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?