Hi All,
I have telerik report 2018 r1 but after configuration it still doesnt show in browser.
below is the code
var reportSource = new Telerik.ReportViewer.Html5.WebForms.ReportSource(); reportSource.IdentifierType = IdentifierType.UriReportSource; reportSource.Identifier = "test.trdp"; // reportSource.Parameters.Add("Date", DateTime.Today.AddDays(25)); ReportViewer1.ReportSource = reportSource;
Hi to all,
I export to MS Word from a Report. This report is a quote document. Users show me a problem to manipulate simply the exported document in MS Word.
This problem is caused by rendering all TextBox (of report) into a grid layout of word. But where there is not a value, it not generates a cell.
User can't write into "ghost cell".
Can I void to generate MS Word using grid?

I was using Telerik 2014 Q2 SP1 and upgraded my report to 2018 R1 and one of my reports does not show a parameter I am passing down.
Report A has a subreport (Report B) and Report A creates a parameter for Report B
instanceReportSource1.Parameters.Add(new Parameter("SampleParameter", "=Fields.SampleParameter"));
In my code for Report B I want to pull the parameter value that is being passed in order to filter some data, so I have:
var param = Convert.ToInt32(this.ReportParameters["SampleParameter"].Value);
This worked just fine before and instead of this.ReportParameters["SampleParameter"].Value having a value it just says the value is "=Fields.SampleParameter".
Was there a change in how parameters were retrieved or accessed in this way?

Is it possible to make a custom toolbar, with different icon images, etc. and drop downs similar to the one outlined in the article for the Web ReportViewer (custom-toolbar-for-the-web-)?
thanks.

| public class dataSourceObj |
| { |
| public string Name {get; set;} |
| public ComplexType ComplexDto {get; set;} |
| } |
| public class ComplexType |
| { |
| public string ComplexTypeName {get; set;} |
| public int id {get; set;} |
| public List< subType> subTypeList {get; set;} |
| } |
| public class subType |
| { |
| public string subTypeName {get; set;} |
| public int id {get; set;} |
| public int ComplexTypeid {get; set;} |
| } |
Hi All,
Please bear with me, as I am new to this :).
I am developing a WindowsForm C# application using Telerik controls and I have progressed far enough that I am needing to now do the reports section.
1. Is there a video tutorial to go through on how to create Reports?
2. Some of my reports are essentially a form that I just fill data into, can I use Reporting for this too?
3. The data I generate on the fly, there is no configured data source binding within the WindowsForm application.
4. I generally have a "print to screen" button to display the data in a popup window and then I can generate the report from this popup (or just print it directly without the popup - would it be better to create the report and use a viewer to show it for the "print to screen" option.
5. Can the reports be exported to PDF or other applications?
6. The database is a Microsoft SQL database.
Can someone please guide me in the right direction?
Thanks in advance.
Damien

objectDataSource
in case the Method returns count 0 items, that the whole table is invisible? (SubReport)
I also have a problem, when objectDataSource
gets count 0, I get and error in the report, I would love, that the binding would not take part in this case and return an empty report?
Thanks a lot!


I actually have 2 issues, both related to having a section (group footer) print at bottom of page = True.
1. If you have a table in your group header, and that table has the option to repeat column headers on each page, the group footer does not actually print at the bottom anymore.
To resolve this, I have created 2 groups and put the table in the second header group.
2. I have 2 group headers (due to issue 1 above), when the group footer won't fit on the page but the table did fit on the first page completely, the group footer does not print on the 2nd page at the bottom any more.
So to summarize, when using the option to have your group footers print on the bottom of the page, if your group header also contains a table that has the repeat column headers on each page = TRUE, the Group footer will not print at the bottom.
And, if your table fits on page 1 but the footer does not, on page 2....the group footer does not print on the bottom of the page as per the property setting.
Thanks,
