Hi,
I'm currently evaluating Telerik Reporting to see if it fits our requirements.
I'm trying to use the "Export a report to a single document to render a report" to render a very simple report with a single "Hello World" textbox. I used the sample code in the link below.
https://docs.telerik.com/reporting/programmatic-exporting-report
I downloaded Telerik.Reporting from nuget.org with version: 13.2.19.1030
I however is experiencing an error once I get to the code:
Telerik.Reporting.Processing.RenderingResult result = reportProcessor.RenderReport("PDF", reportSource, deviceInfo);
Error:
Telerik.Reporting.Xml.UnsupportedVersionException: 'Cannot read a document with the specified schema: http://schemas.telerik.com/reporting/2020/2.0.
You might be using an older version of the product.'
How should I get around this ?
We're trying to get to a decision soon so can you please help us asap.
Thank You
Hi,
I have a created a .NET Core application and I have added the Telerik reporting controller as detailed in: http://www.telerik.com/blogs/telerik-reporting-and-aspnet-core
It runs fine when I am using external tdrp reports.
However I am keen to create a report library and use CLR type names.
Unfortunately I am getting the follow error when trying to view the report:
"Unable to get report parameters.
undefinedReport 'Aliaxis.ReportLibrary.Report1%2C%20Aliaxis.ReportLibrary' cannot be resolved."
My viewer report source is set as below :-
//ReportSource - report description
reportSource: {
// The report can be set to a report file name
// or CLR type name (report class definition).
//report: "test.trdp",
report: "Aliaxis.ReportLibrary.Report1, Aliaxis.ReportLibrary",
// Parameters name value dictionary
parameters: {}
}
Report 1 is a blank report with a textbox in the center. Its namespace/class name is :-
namespace Aliaxis.ReportLibrary
{
partial class Report1
Any advice on why I can't get the report to display and am getting this error?
Kind Regards,
Tom
Here is the description of my problem. It occurs when using Spring.NET dependency injection:
- Create a new Asp.NET project in C# with Visual Studio 2010 SP1.
- Add a reference to Spring.Core (version 0.0.0.40704)
- Add a new Telerik report called Report1.cs (cancel the wizard).
- Add a new Telerik report called Report2.cs (cancel the wizard).
- Compile the solution.
- Add a new class in your project named Class1.
- Add a new class in your project named Class2.
- Add a new interface named IClass2 and make Class2 implement it.
- In Class1 add the following code:
public
int
GetValue(Class2 myObject)
{
return
1;
}
private
static
IApplicationContext _applicationContext;
public
static
T GetInstance<T>(String objectName)
{
return
(T)_applicationContext.GetObject(objectName);
}
void
Application_Start(
object
sender, EventArgs e)
{
// Code that runs on application startup
_applicationContext = ContextRegistry.GetContext();
}
public
Report2()
{
//
// Required for telerik Reporting designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
if
(!DesignMode)
{
IClass2 myObject = Global.GetInstance<IClass2>(
"Class2"
);
objectDataSource1.Parameters[
"myObject"
].Value = myObject;
}
}
public
static
T GetInstance<T>(String objectName)
{
return
(T)(
object
)
new
Class2();
}
Hi,
I have an issue with the row height, if table has dynamic column's width.There is the following table structure: parent table has 4 columns, the last one contains child table with images. This column can be hidden (it depends on report parameter value). In case if this column is hidden other columns' width must be changed. But there is an issue with the rows that can be written in more than 1 line in complete table - they take the same height in case if last column is hidden and text is paced in one line. Please see attached screenshot. How to remove this empty place? Also you can find report sample attached (please remove .jpg from filename). Thank you.
Hello,
I build a Report with the standalone ReportDesigner.
The report is connected with a Ms Access database with Microsoft.ACE.OLEDB.12.0 .The datasource is "embedded".
When i launch the preview in the designer it works fine.
Now I want to view the report in my WpfCore app (compile in x86 mode).
I have a error :
Unable to establish a connection to the database. Please verify that your connection string is valid. In case you use a named connection string from the
application configuration file, make sure the name is correct and the connection string settings are present in the configuration file of your application.
------------- InnerException -------------
Keyword not supported: 'provider'.
I try differents things :
- add an appsetting.
- Changing the connection string dynamically (with the sample code in the KB, which work fine with a SqlServer connection)...
- change driver by Jet4.0 driver...
And it doesn't work... How can I make it works ??
I know that ms access is not the best database engine but i can't change it...
Hi!
Please answer:
How to display linear objects on the map, such as roads, power lines, pipelines. In your examples, only point and polygon objects are shown. We also need to show linear objects whose geographic data are represented in WKT format in the form: LINESTRING (), not POLYGON (())
It is also interesting - whether it is possible to display all types of objects(points, lines, polygons) on the map at the same time.
I have recently started using Telerik reporting my team is using ASP.net Webforms can I have implemented the Telerik Reporting REST service as detailed here http://docs.telerik.com/reporting/telerik-reporting-rest-conception and tested the web API which returned the json file. But when using the report viewer to call a trdp file saved on my project folder I get the following error "Unable to get report parameters.Report 'BarcodesReport.trdp' cannot be resolved". Below is my code for the page, snippet of the error and API controller. Any feeback is greatly appreciated
Report.aspx.cs
public partial class Report : Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
var clientReportSource = new Telerik.ReportViewer.Html5.WebForms.ReportSource();
clientReportSource.IdentifierType = IdentifierType.UriReportSource;
clientReportSource.Identifier = "BarcodesReport.trdp";
ReportViewer1.ReportSource = clientReportSource;
}
}
}
ReportsController.cs
public class ReportsController : ReportsControllerBase
{
static ReportServiceConfiguration configurationInstance;
static ReportsController()
{
var appPath = HttpContext.Current.Server.MapPath("~/");
var reportsPath = Path.Combine(appPath, @"..\..\..\Report");
var resolver = new ReportFileResolver(reportsPath)
.AddFallbackResolver(new ReportFileResolver());
configurationInstance = new ReportServiceConfiguration
{
HostAppId = "Application1",
Storage = new FileStorage(),
ReportResolver = resolver,
// ReportSharingTimeout = 0,
// ClientSessionTimeout = 15,
};
}
public ReportsController()
{
this.ReportServiceConfiguration = configurationInstance;
}
}
I have a pretty simple bar chart and the first label on the X Axis is ALL. Where does this come from? It is not in the data.
In the attached screenshot you will also see the bars are not centered above each label, why is this?
And finally, the bars are very narrow, why is this and how can I make them wider?