Hi Support,
Is it possible to download telerik report in xml format? As part of the requirement i need to download the output in xml format and not able to find any helpful link to implement this functionality. I want to download in xml without any 3rd party integration. Is telerik report support this fucntionality?
Hoping for quick reply.
Thanks.
I am developing in the environment of c# winforms.
1.
It is a method of previewing by sending parameters to the report file (trdp) from the source code.
in the pop-up preview, the value is displayed normally, but if i click the print button for printing, an error occurs.
I also attached the error image.
2.
In the report.png picture, my report sends parameters like that on each page.
If there are more than seven parameters, the first preview is set and the report viewer object is recreated to send the new parameters. (Two previews are set)
I hope the preview will turn on naturally as much as I send the parameters.
What are some strong arguments for using Telerik Reporting over just using the Telerik Grid + PDF/Excel export ? I am trying out both but it seems if the reporting is simple then I can just bind the data to a telerik grid ?
Is it possible to ignore case for JSON formatted web service data source results? So = Fields.Job_Title would pick up "job_Title": "General Labour"
Hi,
I desperately need some guidance. I have a trdx that is working perfectly. However, we are porting over to use Azure.
I need to be able to set a picturebox's image at runtime. I used to do this via itemdatabinding event, but I believe that has been deprecated in favor of user functions. If I have a PictureBox on my report and I want to set the value to an Image (not a path), what code do I need to do this? How do I get access to PictureBox1 so I can set it's value?
Any guidance would be great as I am dead in the water.
Thanks ... Ed
Created a line graph in stand-alone designer that is working great. It uses the DateTime scale on the x-axis to display mmm.yy. The axis is sorting/displaying in chronological order. All of the data being displayed is correct, so it appears to be setup correctly. Is there a way to reverse the sort order to display reverse chronological order on the X-axis?
I am new here and have attempted many different ideas
Found the 'Reversed' setting in Coordinate Systems->Xaxis->Scale, but that setting moves the Y axis from the left to the right side of the chart producing a reverse image. I am just trying to sort the X-Axis, without moving the Y-Axis. So close here.
Have tried descending sorting on the field that is feeding the X axis via DateTime scale. The correct data is displaying which tells me the DateTime scale is working. Changing the sorting does not affect the order displayed on the chart though.
Have been changing many settings and reviewing other threads. In general, when using the DateTime scale on an X-Axis, is there a way to reverse the sort order to make it reverse chronological order?
Thank You,
John
Hello EveryBody,
I have an mvc aplication in .netcore6 where i´m implementing a telerik reporting 2022 reportviewer´s, but when testing it on a linux machine the report generates this error:
{"message":"An error has occurred.","exceptionMessage":"Type: Telerik.Reporting.ReportSerialization.V4_0.ReportSerializable`1[Telerik.Reporting.Report]","exceptionType":null,"stackTrace":null}
It is the response when the reportviewer consult the parameters of the report.
this error does not occur in windows machine
This error occurs when add several mvc controllers to my project,
Help me!
I need to dynamically provide a ConnectionString to a .trdp at runtime.
I've tried to use a parameter and a binding as stated here: https://docs.telerik.com/reporting/knowledge-base/how-to-pass-connectionstring-to-report-dynamically-through-report-parameter
but I can't get it to work. Without the parameter and binding, the
existing dataSource works fine in preview. I'm using Standalone Report
Designer 13.2.19.1213. When I add the parameter and binding, and put the
connection string value in the parameter input box during preview, I
get an error. See the attached picture that shows all settings.
We're facing an issue that we can't quite solve. We have integrated the Web Report Designer into our ASP.NET Framework 4.8 project and it's work a treat when running it on my machine under IIS. We tried to publish it onto our live server, but we get an error code 500.
The ASPX page:
<%@ Page Language="c#" CodeBehind="TelerikReportDesigner.aspx.cs" AutoEventWireup="True" Inherits="Traxs.ASPX.TelerikReportDesigner" %>
<!DOCTYPE html>
<html>
<head>
<title>Report Designer</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2022.3.913/js/kendo.all.min.js"></script>
<script src="../api/reportdesigner/resources/js/telerikReportViewer"></script>
<script src="../api/reportdesigner/designerresources/js/webReportDesigner"></script>
</head>
<body>
<div id="webReportDesigner">Loading...</div>
<script type="text/javascript">
$(function () {
$("#webReportDesigner").telerik_WebReportDesigner({
persistSession: false,
toolboxArea: {
layout: "list"
},
serviceUrl: "../api/reportdesigner"
});
});
</script>
</body>
</html>
The controller:
[Route("api/reportdesigner")]
public class ReportDesignerController : ReportDesignerControllerBase
{
static ReportServiceConfiguration _configurationInstance;
static ReportDesignerServiceConfiguration _designerConfigurationInstance;
static ReportDesignerController()
{
var path = Path.Combine(HttpContext.Current.Server.MapPath("~"), "TelerikReportDesigner/Reports");
var resolver = new UriReportSourceResolver(path)
.AddFallbackResolver(new TypeReportSourceResolver());
_configurationInstance = new ReportServiceConfiguration
{
HostAppId = "Html5App",
Storage = new FileStorage(),
ReportSourceResolver = resolver,
ReportSharingTimeout = 0,
ClientSessionTimeout = 20
};
string sessionId = HttpContext.Current.Request["ASP.NET_SessionId"];
_designerConfigurationInstance = new ReportDesignerServiceConfiguration
{
DefinitionStorage = new DatabaseDefinitionStorage(path, sessionId),
ResourceStorage = new DatabaseResourceStorage(),
SettingsStorage = new DatabaseSettingsStorage()
};
}
public ReportDesignerController()
{
this.ReportServiceConfiguration = _configurationInstance;
this.ReportDesignerServiceConfiguration = _designerConfigurationInstance;
}
}
The log generated by Fiddler Jam.
Thanks