've just created a simple project with 3 reports.
1 Report shows static text.
2nd report shows a list of some entity (assigned as datasource in constructor) of the report class) as follows:
this.DataSource = new List<Test>()
{
new Test(){Name = "hasan"},
new Test(){Name = "Ali"}
};
3rd report just contains two sub report objects in its detail section.
When I run the application I see only one of the sub reports. Can someone check the source at http://www.filedropper.com/telerikreporttest and tell me what the problem is?
If I check preview of individual report, they show the data perfectly fine but something wrong happens on runtime.
Also the behavior seems unpredictable because sometimes it shows data from both the reports but repeats the static text as many times as there are rows in the second subreport. This happens if I change the order of subreports in the detail seciton of Master report.
Thanks