Hello,
I've the following scenario, I've got a collection that's bound to a Report, the report has 4 groups and in the last GroupHeader I've a subreport
I need to group on
ID_FIELD1
ID_FIELD2
ID_FIELD3
ID_FIELD4
I've created the grouping and it seems to work...I've got problem with setting the report source (it's null in the subreport)
I've checked at NeedDataSource of subreport and
in the subreport I always have null
can you please provide me how to fetch the data in the inner source?
Thanks
I've the following scenario, I've got a collection that's bound to a Report, the report has 4 groups and in the last GroupHeader I've a subreport
I need to group on
ID_FIELD1
ID_FIELD2
ID_FIELD3
ID_FIELD4
I've created the grouping and it seems to work...I've got problem with setting the report source (it's null in the subreport)
I've checked at NeedDataSource of subreport and
private void subReport1_NeedDataSource_1(object sender, EventArgs e)
{
var sub = sender as Telerik.Reporting.Processing.SubReport;
var datasource = sub.Report.DataSource; //here data are splitted correctly
}
can you please provide me how to fetch the data in the inner source?
Thanks