Hi there,
using the standalone report Designer to create trdx report, the often
in C# described method will not work fpr TRDX based subReports!
an error has occurred while processing subreport 'subreport2':
Bindings rror Property 'DataSource' does not exist.
everbody knows, in C# way, it works like:
using the standalone report Designer to create trdx report, the often
in C# described method will not work fpr TRDX based subReports!
an error has occurred while processing subreport 'subreport2':
Bindings rror Property 'DataSource' does not exist.
everbody knows, in C# way, it works like:
this.subReport1.Bindings.Add(new Telerik.Reporting.Binding("ReportSource.DataSource", "=ReportItem.DataObject.Persons"));
but using the Standlone Designer (TRDX file), for the binding, he cannot find DataSource ?
...
<SubReport Name="subReport2">
<ReportSource>
<UriReportSource Uri="ReportLines.trdx">
</UriReportSource>
</ReportSource>
<Bindings>
<Binding Path="ReportSource.DataSource" Expression="=Fields.Lines" /> ----- .DataSource is not found
</Bindings>
</SubReport>
...
thank you for helping
Steffen