I'm implementing a reporting feature in a .net core application. This feature was previously implementing in a webforms application. The logic to produce a Telerik.Reporting.Report object exists already. In the webforms application you could provide the report source to the report viewer like:
ReportViewer.ReportSource = new Telerik.Reporting.InstanceReportSource { ReportDocument = ReportObject };
In the .net core application I have managed to setup the HTML5 report viewer and displayed the example report. I'm am struggling to find any documentation or examples on how to use a Telerik.Reporting.Report object as the source for the HTML5 report viewer. Is it possible to dynamically generate a Telerik.Reporting.Report and use that as the report viewer report source?
Hello,
we have a problem with displaying images in the PictureBox.
Within the designer, all images are displayed in good quality.
Also in the preview of the report in Visual Studio, all images are displayed in good quality.
If we start the application and display the report via the report viewer, all images are displayed in a poorer quality.
What could be the problem?
Okay, so my title describes basically what I am looking to do, in terms of ASP.NET/HTML.
I'm hoping to be able to figure a way with someone's help to do this.
A certain report is being bound to a List of instances of a data class.
One of the Fields of this data class is a sub-list of Name/Value pairs - fees - with a short description and a dollar amount.
We do not want to just use a straight List or Table object to represent the fees, because they are mostly short, so this will lead to a huge chunk of dead space to the sides of the list.
We do not want to do a rotated layout with the List or Table going horizontally, because there could easily be 10 or 12 items, which would not fit on the width of the page. Unless the horizontal list/table would actually wrap at the edge of the page, would it?
If the horizontal list/table will NOT wrap at the edge of the page, then what we'd ideally like to do is essentially emulate the function of the ASP.NET Repeater control.
So say that we have the following data:
Item1, Value1
Item2, Value2
Item3, Value3
Item4, Value4
Item5, Value5
We'd IDEALLY like to have it layout like this:
Item1: Value1; Item2: Value2; Item3: Value3; Item4: Value4; Item5: Value5;
and have it wrap to fit the page. BUT, when it wraps, it needs to keep the matching item/value together, as if they were in an html NOBR tag like so:
<nobr>Item#: Value#</nobr>
What is the best way to get close to this and approximate this layout?
I'm trying to achieve the following without MVC, is it even possible? Where can I found an example of this?
http://docs.telerik.com/reporting/telerik-reporting-rest-custom-report-resolver
I'm following this document for our HTML 5 MVC appliation: http://docs.telerik.com/reporting/html5-mvc-report-viewer-customizing-custom-parameters-editor
On our report page I put the javascript in <script> tags and added the ParameterEditors to our ReportViewer() code, but I don't see any change.
Do I somehow associate this code with an existing parameter control? If so, how? I have a mental disconnect on how this is supposed to work.
Thank you.
Hi there,
My scenario is this....
Report 1: Has a sqldatasource which calls a stored procedure which takes in 2 parameters.
Report 2: Has a sqldatasource which calls a different stored procedure but takes in exactly the same 2 parameters.
Report 1 contains summary information. Report 2 contains detailed information.
I need to combine the reports. Therefore my thinking is that Report 1 will be the master and Report 2 will be the sub.
My question is: how can i pass the datasource params from Report 1 (Master) to the Report 2 (Sub)?
Any help greatly appreciated.
We have a report that has a select box that contains a very long list of stores. Each store has a very long list of their own product IDs.
When I select a store from the select list the product IDs list populates so that I can select one or more products. That works great.
However, when I select multiple stores, the product IDs list grows extremely long making it difficult to find the IDs the user wants to select.
Any ideas on what a good solution is to this? Is there maybe some way to make it so that the last store that is clicked on then only that store's product ID's display in the select list?
Thank you.
Is it possible to conditionally hide (or show) columns when exporting a report to CSV?
We've noticed that our reports are including subtotals as a column with the value repeated for each row in the same group.
I figured I could bind the visibility of the textbox to some value that indicates the rendering type (CSV, or other), but I can't find anything that indicates how the report is being rendered.
I'm using Reports 2017 R2