I have some thing like this
COL1 COL2
a 1
b 2
c 3
d 4
4 =====> this is what im asking for
I want to get last item of the row.. I have been using sum and its helpful but this time I want to get the last item. how do I do that?
We decided to purchase telerik reporting based on the superior angular web viewer, report designer, and exporting features we found. I had some pretty solid requirements that i had to follow. One of which was using our own custom filtering controls, look, and fill.
I also wanted to use the instanceReportSource methodology and filter my data and attach to the datasource on the report based on each reload of the web viewer.
We used the report designer inside of visual studio to do all of our design work.
So with that said i had to do a couple of things, to get our custom filtering to work through angular web viewer.
1. On report source "report" parameter i had to JSON.stringify a model that contained any filter changes and the name of the report.
getReportSource() {
this.filter.Report = 'Company.Product.Domain.FinishedGoodsTransactionHistory.Reports.TransactionHistory';
return JSON.stringify(this.filter);
}
2. I then needed to build a custom resolver, part of implementing the IReportResolver telerik interface is the "resolve(string report) method", this method is called
Hello,
I am using a HTML5 Telerik Report Designer. I have created a line-with-markers chart and added tooltip to it as well.
However, in the following graph, the tooltip is only displayed when the mouse is hovered on top of the marker, while I want a crosshair tooltip.
I have tried using Kendo UI for jQuery to achieve this, however, it does not link with the data that is generated with the Report Designer.
$("#reportViewer1").kendoTooltip({ filter: "path[data-tooltip-title]" });
This displays a blank screen alongside the Designer tooltip:
Is there any way a crosshair tooltip can be added to a HTML5 Report Designer graph?
Hello,
Could you advice on how to show summary info from row values?
The data source data looks like this - see RawData.png attached.
I need to show a table which looks like this - see ResultData.png attached.
Thanks
I have a web app, in .Net Core 3.1 and I am using Telerik Reporting to generate my report. I am getting an error which says:
"Failed to load resource: the server responded with a status of 500 (Internal Server Error) - api/reports/formats:1"
I don't think the serviceUrl is the issue, but here it is:
<script type="text/javascript">
$(document).ready(function () {
$("#btnReport").click(function () {
var viewer = $("#reportViewer1").data("telerik_ReportViewer");
viewer.reportSource({
report: "KarposhReports.Temp, KarposhReports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
parameters: { imageUrl: $("#imageUrl").attr('href') }
});
viewer.refreshReport();
$("#reportViewer1").show(0);
});
$("#reportViewer1")
.telerik_reportViewer1({
serviceUrl: "/api/reports",
reportSource: {
report: "KarposhReports.Temp, KarposhReports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
},
viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
ready: function () {
this.refreshReport();
}
});
});
I Can't use ObjectDataSource with my project because Wizard always crash and restart VS 2017 while searching types and classes in all assemblies.
I have a huge project and my domain entities assembly has a lot of dll references.
Can I set the list of assembly Wizard sould use without going through others assemblies?
What can i do to solve this problem?
thks
I have some old reports that were created using the Visual Studio designer. These reports also include some logic in events, such as positioning and sizing elements dynamically, given that some reports have a very complex layout that at the time was impossible to replicate without adding this “code behind” logic.
With.Net Core applications, since the Telerik Reporting Visual Studio Designer doesn’t work on .Net Standard libraries, what path should I take in order to have some custom logic run within the report? If I start using the stand-alone designer, could I add some programming logic to the report with an .TRDP file?
Thank you.
Hello,
I have installed the newest releases (Telerik Reporting R3 2019) via Progess Control Panel on my computer.
I opened my project in VS 2010 and wanted to upgrade all the reporting dll's.
But when I click on the menu entry "Upgrade Wizard" nothing happens!
No further window appears!
See the screenshoot!
How can I solve this problem?
Best regards
Simon