We have several reports where we are not using the detail section, and we put tables in the header or footer. When we export to csv, we get one line of data containing the customer name and other variable data that goes in the header, but the table data does not export.
We do have one report that has the table in the detail section. Oddly, that table does export, but the customer name and other header data does not.
Now I should point out that when we design our reports, we do not use a data source. We type in the column names manually, as in:
=Fields.FieldName
The reports get their data from a web service, and we then bind it to the report and render it in the report viewer. I don't know if that has any effect on this issue or not.
PDF and Excel work fine.
Is there any way we can get all the data to export?

Hello - I am trying to use the Report Catalog sample and instead of setting the "View Report" text box Action to Navigate To Report directly I am trying to use this to run a Report Book, which can contain multiple reports. Everything seems to connect up correctly but when I run the Report Viewer the Text Box is not clickable. I can set it directly to the report assembly name and it works fine but when I try to use the User Function for the Report Book it doesn't allow clicking. What could possibly be wrong?
Here is a sample of the function:
Public Function BuildReport(ReportName As String) As InstanceReportSource Dim reportSource As New Telerik.Reporting.InstanceReportSource Dim reportBook As New ReportBook reportBook.Reports.Add(New CoverSheet) If ReportName = "Acknowledgement" Then reportBook.Reports.Add(New Acknowledgement) ElseIf ReportName = "Window Schedule" Then reportBook.Reports.Add(New WindowSchedule) End If reportBook.Reports.Add(New SignOffLetter) reportSource.ReportDocument = reportBook Return reportSource End Function
Hi,
just used the Upgrade Wizard in VS and upgraded to 10.2.16.914 from previous release Version.
Now the reports are broken. Maybe someone can help.
The Textbox.Value applied Text is not rendered anymore on NeedDatasource Event, see attached screenshots.
Kind regards.
Hello,
I am looking for a way to decorated Business Object Data Members, similar to FunctionAttribute and DescriptionAttribute for User functions http://docs.telerik.com/reporting/expressions-user-functions#providing-metadata-for-functions
It would be very useful to see custom documentation about data source types and members when configuring a new Object Datasource for the report - more than Method, Type and Assembly which is displayed by default.
Best regards,
Magnus
Hello,
Is there a way to make the Standalone Report Designer remember user customization, like pane- and window size and arrangements, between user sessions? Every time I open the Designer (after it was closed), the arrangement of panes is reset to default, and I need to do the same re-arrangement every time.
Best regards,
Magnus
I have a graph that shows the values of certain measures by time. I wanted to create a regression line that I can toggle on and off. I think i can handle the toggle on and off. But wanted to know if there is any clever or easy way to do the regression line?
The only way I can see to do it is calculate the long way for each value in the series.
Thanks
Phillip
I have a Line Graph with 2 series. One is the actual value and one is the target value so someone can easily see how far off their target they are.
I want to be able to toggle the visibility of the Target series with a Boolean parameter. It would be similar to setting a binding.
When Parameter A is true, set visibility of series A to true. When Parameter A is false, set visibility of parameter A to false.
I am having trouble finding where I can add a binding on the visibility of my line series. Is this possible?
Thanks,
Phillip