Hi All,
I have an issue with Telerik.ReportViewer control not exporting "excel" format. It will successfully download these formats, *.tiff, *.pdf, *.csv
and when I select XlS, the report will go a blank white web page,
Anyone have any advice, as to what could cause this?
is there a bug with this control that I don't know about?
I have tried with all major browsers and same results everytime.
this is the version of the control: version=5.0.11.603
Joey
Hi,
We have upgraded to the Reporting Q3 2013 version which has broken our existing reports.
Here is an example of the XAML we are using: (RemitReport is the report property passed to the WPF View Window, type of Telerik.Reporting.Report)
<telerik:ReportViewer x:Name="ReportViewer"
HorizontalAlignment="Stretch"
ReportSource="{Binding RemitReport, ElementName=thisWindow}" />
When we try to run the report the following "Binding Error" appears in a window and our report view is empty. However the control does render, just with no report displayed.
BindingExpression path error: 'NavigateBackCommand' property not found on 'object' ''RemitReportWindowViewModelProxy' (HashCode=37808243)'. BindingExpression:Path=NavigateBackCommand; DataItem='RemitReportWindowViewModelProxy' (HashCode=37808243); target element is 'RadButton' (Name=''); target property is 'Command' (type 'ICommand')
I've gone back and made sure all required references are present and are of the correct version.
Any ideas what is happening?
Thanks.
1.
<%@ServiceHost Service="Telerik.Reporting.Service.ReportService, Telerik.Reporting.Service, Version=7.2.13.1016, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE" %>
Private Sub Chart1_NeedDataSource(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.NeedDataSource |
Dim myChart As Telerik.Reporting.Processing.Chart = DirectCast(sender, Telerik.Reporting.Processing.Chart) |
If Chart1.Series.Count = 0 Then |
Chart1.Series.Add(New Charting.ChartSeries("Test", Charting.ChartSeriesType.Point)) |
Chart1.Series(0).DataXColumn = "Fields.X" |
Chart1.Series(0).DataYColumn = "Fields.Y" |
End If |
If myChart.DataSource Is Nothing Then myChart.DataSource = Me.DataSource |
End Sub |
Hello!
I have a mvc project and in a form submit i have in my hands a complex object.
Lets assume that the object is:
Warehouse,
City
Country
Date
ProductPrice
Product
Quantity
The list of object is already filtered by warehouse city and country, and the goal is to build the report with that in the Header, and a list of lines with:
Date, Product, Price (base on the quantity and price),
and then Total's (Total price).
Is there a way to do all by code? Whats the best aproach to accomplish this?
Thanks!
M. Macias
ps: I dont want to use the table wizard to get the datasource, because it must be calculated in server side. ​
I'm using version 2012 Q2. I'm trying to export a Report object and am getting the following error: "Invalid Value of Report Parameter". I'm getting this error when my string parameter has multiple values, such as: "111,222,333". If the parameter has only one selection, such as "111" (not a comma delimited string) there is no exception raised. Here is the code for rendering/exporting report:
var result = reportProcessor.RenderReport("XLSX", rpt, deviceInfo);
So, in short, when a string parameter that's not a comma delimited list is passed, the report exports. When the string represents a multi-select combobox, and is comma delimited, the "Invalid Value of Report Parameter" exception is raised. Why is this occurring?
Hey there,
We bought some time ago the telerik system (reporting) for a solution, that we set up for a custumor. This solution was build as a 32bit application and shall be now comiled with the option "any cpu". Unfortunatly the reference to the 'telereik'-Reporting dll is based on a 32bit system.
Is there anyway that we get the Reporting Q2 2012 Any CPU Dll.
The needed dlls are :
1. Telerik.ReportViewer.WinForms.dll
2. Telerik.Reporting.dll​
Best regards
nawid
Hi,
We are looking to
override NavigateToUrl(url, target) so that the report is displayed in the
same window which is an iFrame currently it navigates to top which is a new
window. The version we are using is Telerik.ReportViewer.WebForms,
Version=6.2.13.110.
How would we do this?
Already
tried http://www.telerik.com/forums/is-it-possible-to-use-javascript does
not work.
Attach a screen print of our output from dev tools does not update target.
Thanks
Mark