Telerik Forums
Reporting Forum
18 answers
2.2K+ views
Hello All,

I have bind one 25 record rows report programmatically.
Report display well.
When I select export to CSV file using direct report viewer, csv file get generated but it has double number of columns.
First shows columns with all rows with source dataset  table column names and then data name.
I have attached sample image file.
See the gray back ground columns are extra columns.

Please provide me help on how to remove these unwanted primary columns.




Christopher
Top achievements
Rank 1
Iron
Iron
Iron
 answered on 26 Sep 2024
1 answer
162 views

I'm trying to find an error in my code, but I don't even know where to look. How can we get support from Telerik to help identify the exception?

How do we get more detail from errors like this?

[MissingMethodException: Method not found: 'System.Collections.Generic.List`1<System.Collections.Generic.IEnumerable`1<!0>> Telerik.Reporting.Processing.DocumentParametersManager`1.GetParametersByReports()'.]
   Telerik.ReportViewer.WebForms.ReportRenderOperation.ProcessReport(ReportSource reportSource, Hashtable deviceInfo, IRenderingContext renderingContext) +0
   Telerik.ReportViewer.WebForms.ReportRenderOperation.PerformOperationOverride() +226
   Telerik.ReportViewer.WebForms.ReportPageOperation.PerformOperationOverride() +88
   Telerik.ReportViewer.WebForms.HandlerOperation.PerformOperation(HttpContext context, ICacheManager cacheManager) +49
   Telerik.ReportViewer.WebForms.BasicHandler.ProcessRequest(HttpContext context) +182
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +195
   System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) +50
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +73

 

 

Ivet
Telerik team
 answered on 20 Sep 2024
1 answer
709 views
This feels like a horrible question but - where exactly is this product now in the download menu?

To clarify I'm looking at:
https://www.telerik.com/account/downloads/product-download?product=REPORTING

I see 26 results, 20 are nupkg, 3 zips, an msi, and two types of documentation.

The three zip file names:

Telerik_Reporting_R2_2021_SP1_15_1_21_616_DataDirectODBCDrivers.zip
Telerik_Reporting_R2_2021_SP1_15_1_21_616_DEV_DIGITALLY_SIGNED.zip
Telerik_Reporting_R2_2021_SP1_15_1_21_616_Sources.zip

Are any of these Standalone Report Designer or is that gone now?

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Sep 2024
1 answer
50 views

I'm incorporating a ReportViewer into my WPF app.  To do so, it seems I must include the following:

<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" />

However, including those seems to change a lot of other styles in my application that I'd rather not have changed.  I'd like to limit the scope of those changes to the ReportViewer itself.  Because, in the instance I'm working on right now, my ReportViewer is the only thing in a TabItem, I can put those resources in the TabItem, but then they'll be sprinkled throughout my app.

As you've likely figured out, I'm not the best at working with styles, but what I'd like to know is how to include those without their impacting anything else.

Thanks in advance!

Dimitar
Telerik team
 answered on 17 Sep 2024
1 answer
65 views

As I'm working with it more intensely, I'm getting the impression that ReportViewer is "the orphan nephew living in the cupboard under the stairs".   It appears to work very differently from the other components.  Data binding just doesn't seem to work as it should.  For example, the ReportViewer works very differently from the RadGridView.  In RadGridView there is an "ItemsSource" property that can be bound to a property in the ViewModel.  However, in ReportViewer there doesn't appear to be anything similar.  The only thing I've found in the examples is a binding to the "ReportSource", but that's a fundamentally different thing.  The "ReportSource" is like the template, which, if we continue the comparison, is like the "RadGridView.Columns".  In my opinion, there really needs to be a good way to bind to the DATA.  It looks like the intent is there, since a report can be built with an "Object Data Source", but I've found no way to bind that to dynamic data in the ViewModel, per se. 

Please tell me I'm wrong and point me to an example where the "ReportSource" is configured declaratively in the ReportViewer, but the data comes directly (and simply) from the ViewModel.

Thanks!

1 answer
57 views

Is there a possibility to use Azure Blob Storage as the ReportSourceResolver in the REST API instead of file or database storage?

 


        builder.Services.AddSingleton<IReportServiceConfiguration>(sp =>
            new ReportServiceConfiguration
            {
                // The default ReportingEngineConfiguration will be initialized from appsettings.json or appsettings.{EnvironmentName}.json:
                ReportingEngineConfiguration = sp.GetService<IConfiguration>(),
                // In case the ReportingEngineConfiguration needs to be loaded from a specific configuration file, use the approach below:
                //ReportingEngineConfiguration = ResolveSpecificReportingConfiguration(sp.GetService<IWebHostEnvironment>()),
                HostAppId = "ReportingNet6",
                Storage = new FileStorage(),
                ReportSourceResolver = new UriReportSourceResolver(System.IO.Path.Combine(sp
                        .GetService<IWebHostEnvironment>()
                        .ContentRootPath,
                    "Reports"))
            });

Ivet
Telerik team
 answered on 13 Sep 2024
1 answer
77 views

Hello,

I noticed that the Excel option is NOT listed in this export menu by default (i.e. telerikReportViewerTemplate-18.1.24.514.html )

 

I am reading thru these two docs to figure out how to get the Excel option to show up in Export menu.

https://docs.telerik.com/reporting/doc-output/export-formats

https://docs.telerik.com/reporting/doc-output/configure-the-report-engine/extensions-element

 

I do not see any special configuration in our appsettings.json. I only added the assembly ref for some special functions, etc.

  "telerikReporting": {
    "assemblyReferences": [
      {
        "name": "SynReportsLibrary"
      }
    ]
  },

 

Is there anything simple to do on the front end, perhaps in the HTML View Template params ? Or is it done in the backend appsettings ?

 

Thank you,

Bob

 

Bob
Top achievements
Rank 1
Iron
Iron
Iron
 updated answer on 12 Sep 2024
2 answers
97 views

I downloaded the samples provided in GitHub and was very surprised and disappointed that there wasn't a single example of using the WPF ReportViewer.

What I'm doing seems trivial, but I'm stuck.  I've created a report in the stand-alone designer and saved it as a local file.  The report connects to SQL server.  I added the report server as per the instructions found at https://docs.telerik.com/reporting/embedding-reports/display-reports-in-applications/wpf-application/how-to-add-report-viewer-to-a-wpf-.net-core-project.  However, when I run the application, I get the following:

I've looked everywhere I can think of and have not found a solution to this simple problem.  Any help would be appreciated.

Thanks!

Bradley
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 11 Sep 2024
1 answer
111 views

I'm upgrading all of the Telerik packages in an application to the latest version. The final piece is to get ahold of the files telerikReportViewer.kendo-18.2.24.806.min.js and telerikReportViewer-18.2.24.806.min.js.

I've tried following the instructions to use the CDN: Using CDN - Download and Installation - Kendo UI for jQuery (telerik.com). I'm not finding these files there. 

I also read this article: HTML5 Report Viewer Requirements and Browser Support - Telerik Reporting. It states that these files are served by default from the Telerik Reporting REST Service, but I'm having a hard time understanding the process of actually getting them. 

It seems that, for the previous version, we had local copies of these files in our project. I'm not sure where we got them from. Can anyone provide instructions on where to find these files? 

Lance | Senior Manager Technical Support
Telerik team
 answered on 10 Sep 2024
1 answer
76 views


Keep having this error. Nuget package on both projects is the latest '18.2.24.806'. Based on what I've read I need to update my links/scripts in my index.html probably, but I cannot find the correct combinations. 

The projects are a Blazor WASM .net 8 project and a .net8 minimal api (though I used a controller to get the reporting service running correctly). 

Here is my index.html

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Production Scheduler</title>
    <base href="/" />

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
    <script src="https://demos.telerik.com/report-server/api/reports/resources/js/telerikReportViewer"></script>
    
    <link href="ProductionScheduler.Web.styles.css" rel="stylesheet" />
    <link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
    <link rel="stylesheet" href="css/app.css" />
    <link rel="stylesheet" href="css/telerik/navigation-drawer.css" />
    <link rel="stylesheet" href="css/telerik/all.css" />
    <link rel="stylesheet" href="css/telerik/listview.css" />
    <link rel="stylesheet" href="css/telerik/custom-styles.css" />
    <link rel="stylesheet" href="css/telerik/telerik-button.css" />
    <link rel="stylesheet" href="css/telerik/grid-command-button.css" />
    <link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css" />
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2022.3.913/styles/kendo.default-main.min.css" />
    <script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" ></script>
</head>

<body>
    <div id="app" class="fit-screen">
        <svg class="loading-progress">
            <circle r="40%" cx="50%" cy="50%" />
            <circle r="40%" cx="50%" cy="50%" />
        </svg>
        <div class="loading-progress-text"></div>
    </div>

    <div id="blazor-error-ui">
        An unhandled error has occurred.
        <a href="" class="reload">Reload</a>
        <a class="dismiss">🗙</a>
    </div>
	<script src="_framework/blazor.webassembly.js"></script>
	<script>
	    window.blazorCulture = {
	        get: () => window.localStorage['BlazorCulture'],
	        set: (value) => window.localStorage['BlazorCulture'] = value
	    };
	</script>
    <script src="_content/Telerik.ReportViewer.Blazor/interop.js" defer></script>
</body>

</html>

I also am receiving this error in my dev console, but am not sure if it is related or not.


Any help is appreciated!

Ivet
Telerik team
 answered on 10 Sep 2024
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?