telerik-reporting

Error: "Failed to map the path '/'" when I add a Telerik ReportViewer to web page

I've just built a crap load of Telerik reports for my web site project, and they all work nicely. I have to demonstrate them tomorrow, and tried to build a viewing page that hosts their web ReportViewer. I have asked this question on their forums as well, but expect less response than from SO late on a Friday night. Whether I use GAC ...

Report Metadata in a Collection of [Telerik] Reports

I have a rapidly growing set of Telerik reports in my web project. My data providing strategy is that each report has an companying text file containing a SQL query. I handle complex filter criteria, like long 'x is in(y,z,a,b,c....)', or '((x=1) and (x < y))', repeated a hundred times, by doing text substitutions on a text file query ...

Telerik Reporting over SSRS?

Broad question is: Is there anything Telerik Reporting can do that SSRS (2005) cannot? Specifics: We're looking to migrate our current Reporting infrastructure from in-house ASP.NET + Crystal (VS Edition) to something else. Ignoring the cost factor (we have a Telerik license), is there any pros or cons to going with Telerik over SSRS? ...

'Not implemented' exception in Telerik Report

Using an IEnumerable of custom objects, returned from a LINQ to Entities query, I get an "operation not implemented" error in my report viewer, unless I iterate through the list first, e.g. by calling ToList() on it. I already do this on the source query from entities, then I query the results using custom methods etc. for calculation...

How do I get get a proper metric Telerik Reporting Designer?

Everything I can possibly set to metric on my machine is set to metric, including the Unit of Measure for my Telerik report, yet when I add a control to the design surface, it's Location property is set in inches, and the dimensions shown for all controls on the design surface (vs. in the property grid) are still inches as well? Is th...

Designer Popup Editor Issue

Hello, In a custom toolset I have installed for Visual Studio, there is a popup window that should appear to me so that I can manipulate one of the lists (an in-built editor). The component is Telerik, but I don't think that has anything to do with it (maybe). The popup window is no longer popping up to me. I wonder if it got minimiz...

Telerik ReportViewer - when using within a user control the control bar doesn't appear correctly.

When using the Telerik ReportViewer control from inside a user control, the control bar (bar with navigation & exports buttons etc) doesn't appear to display correctly. Only the navigation buttons appear in the control bar itself. The other buttons (Export, Refresh, Print, & Close Parameters) all appear below the control bar, each on a n...

Why does my Telerik report not recognise its A4 page size?

I have just created a new Telerik report, and set its page size to A4, portrait, yet the default page width is 140mm, way short of the A4 standard 210mm. What is going on with the report or the report designer? ...

Using Teleriks ReportViewer Client side API

Does anyone have an idea how to set up Reportviewer to use the client side API. I want to use the ExportReport(format) function. Requirement is to export the data directly into either an excel or PDF. Do not have to display any data on the page itself. Any example will be a great help. ...

Methods of providing custom reports for an asp.net application

In our windows application, we used crystal reports. If a customer needed a custom report, we could create it and then send them the rpt file. The customer would then simply add the report file to a custom folder, and could access it directly from our application. Using a web app, how is this possible. It seems like anything create...

How can i implement parameterised and filtered report using stored procedure in Telerik reporting.

HI! I am new to telerik reporting , I want to implement a report using stored procedure with 5 filters on the report to get the desired out put. So, please can any one explain me how can i do it? or any link to see the video for the same? ...

Font Times New Roman 11,25 Regular is not supported in telerik reporting.

Hi all.. I'm having some trouble exporting to PDF in Telerik Reporting Q2 2008. It seems that for some reason, exporting to PDF ( or printing, which is the same, it first exports to PDF, and then prints ), is giving me this error. First it started with Arial, I found the bug with the font Arial, replaced the textbox with Times New Rom...

Cannot bind to list<T>.property or list<T>.item.property in details section of Telerik report

I have created a Telerik report and I am setting the datasource on runtime to an object with some properties and a List. I am using the properties in the page and report header sections and i want to use the list as the details. Now the problem is binding to the List's item properties in the details section. I have played around with the...

Issues with putting Charts on Groups

I am trying to get a Chart to work in the Header for a Group in Telerik Reports. I am using a pie chart, and I am using the DataGroupColumn property. The code is below Me.Chart1.DataGroupColumn = "Mfg" ChartSeries1.DataYColumn = "Quantity" ChartSeries1.Type = Telerik.Reporting.Charting.ChartSeriesType.Pie And...

Hyperlinks Rendered in PDF

Hello! I have a report that is created using Telerik Reporing 2010. You have the ability to export to PDF. One of the cells contains a standard hyperlink that when viewed from the report view works fine The cell contains this simple link <a href=”http://site.com”&gt;link&lt;/a&gt; What I would like to be able to do is maintain the hy...

MVC2: Non-view aspx page in iframe

I have a contradiction to deal with: I need to make a stylesheet load for a reporting object (for ASP.NET -- it requires runat), however, it won't compile when I have <% %> tags in . I need the <% %> stuff in to load stylesheets and jscripts for the rest of the page. So, I'm going to load the reporting object into an wrapped in a n...

How to create a xaml databound report in WPF?

I want to create a report that can be printed, exported as PDF or Word document. All of the reporting frameworks I've seen so far, insist on creating a connection to database directly which is absurd. My data comes from WCF service inform of an object. Following is the structure of object. ReportData { public UserInformation Basic...