Hello,
I have a page where I load the same report, but with different parameter values each time. What happens is that after the first loading, the Report is not considering the new parameters and keeps bringing the report with the first parameter.
I have tried removing and adding the Report DIV programatically to see if it would clear the Report Viewer contents, but after doing that the Report stops loading, although the HTML DIV Structure is the same as the original.
Any ideias?
Regards,
Alexandre
Good Afternoon Telerik,
I currently am averaging to DateTime values from two columns Completed Report and Final Report into one column called CompToFinal
I am wanting to average Completed Report to Provisional Report columns. and, sometimes there is No Provisional report but it will ALWAYS have a Final date time. so I want to copy the averaged final time to the provisional column if no provisional value exists or is NULL. I have tried the following code but keep getting errors. Is there a better way to do this?
=Avg(Fields.PROVISIONALDATETIME.TimeOfDay - Fields.COMPLETIONDATETIME.TimeOfDay) ?? ? Avg(Fields.FINALDATETIME.TimeOfDay - Fields.COMPLETIONDATETIME.TimeOfDay)
Thank you!
We are using the built in Reporting Wizard to set up the report to print on specific label stock. The biggest probelm we are having, is that if the label prints on more lines than the label will accommodate, it is pushing all remaining text down, there for, causing those labels to print misaligned on the remaining labels in that column. Is there a way to force enything that prints outside the size of the label to just be skipped? This is causing our customers some major issue where the first Label is an issue and now the entire column is wasted becuase of the first record in the column.
Hello,
I dont see any example using report with blazor webasm. It's possible using report with viewer on blazor page client side and get data to a API (server side).
Cannot see any example in the examples reports folder (C:\Program Files (x86)\Progress\Telerik Reporting R2 2023\Examples\CSharp)
Thanks about any information related to this.
Hello.
About the report's demo Solution (CSharp.ReportExamples.VS2022), what's the difference btw BlazorNativeIntegrationDemo and BlazorIntegrationDemo?
I use a blazor web assembly application with API as backend.
Thank you.
Hi, when i try to paste
{Format('{0}',12.34)}
to htmlTextBox and apply it changes Value to empty.
Is it bug?
When I switch to html view it disappears also.
I installed the Telerik Reporting tool. Created a new project one in Winforms and another as asp.net. Created a new class library,
When I tried to add a Teleri report I get this error message. I tried different projects and different reports and reinstalled the software.
What's wrong here? This is an absolute blocker and I basically can't do anything. It creates a .cs files with references to Telerik.Reporting; and Telerik.Reporting.Drawing yet there are no dependencies to Telerik showing up in the project.
I am running VS 2022 17.6.4 as admin.
Also, why are there no Nuget packages on nuget.org. I can't even add it manually.
---------------------------
We have a bunch of Multi-Column reports (labels), that our customers are asking us to Page Break based on certian criteria in the data set. We are doing that, but what our customer is asking, that the page break is a true page break, in that the page break starts physically on a new page, not in a new column. Is there a way to set this up. I have been looking at different settings to do this, but I just can seem to achieve this desired behavior.
Yes, our customers understand that this will increase the WASTE of labels, but this is what they are asking for.
TIA.
Hello,
How do we change the datasource of Telerik reporting dynamically using Business Object ?
I'm playing with Sample CSharp.Net6.HtmlIntegration from R1 2023 Telerik Reporting
Here's my code :
(Reporting.cshtml)
@{
string report = ViewBag.Report + ".trdp";
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Telerik HTML5 Report Viewer Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link href="https://kendo.cdn.telerik.com/2022.3.913/styles/kendo.common.min.css" rel="stylesheet" id="common-css" />
<link href="https://kendo.cdn.telerik.com/2022.3.913/styles/kendo.blueopal.min.css" rel="stylesheet" id="skin-css" />
<script src="/Scripts/themeSwitcher.js"></script>
<script src="/api/reports/resources/js/telerikReportViewer"></script>
<style>
body {
font-family: Verdana, Arial, sans-serif;
margin: 5px;
}
#reportViewer1 {
position: absolute;
left: 5px;
right: 5px;
top: 40px;
bottom: 5px;
overflow: hidden;
clear: both;
}
#theme-switcher {
float: right;
width: 12em;
height: 30px;
}
</style>
</head>
<body>
<select id="theme-switcher"></select>
<div id="reportViewer1">
loading...
</div>
<script type="text/javascript">
$(document).ready(function () {
//Theme switcher
themeSwitcher(
'#theme-switcher',
'#common-css',
'#skin-css');
$("#reportViewer1")
.telerik_ReportViewer({
serviceUrl: "api/reports/",
reportSource: {
report: "@report",
},
viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
scale: 1.0,
enableAccessibility: false,
//If set to true shows the Send Mail Message toolbar button
sendEmail: { enabled: true }
});
});
</script>
</body>
</html>
(ReportingController.cs)
using Microsoft.AspNetCore.Mvc;
namespace CSharp.Net6.Html5IntegrationDemo.Controllers
{
public class ReportingController : Controller
{
[Route("reporting")]
public IActionResult Index(string report)
{
ViewBag.Report = report;
return View("Reporting");
}
}
}