Hi,
I have xml like the following
<User Id="1" Name="test">
<Item Id="123" Title="blah1"/>
<Item Id="1234" Title="blah2"/>
<Item Id="1235" Title="blah3"/>
<Item Id="1236" Title="blah4"/>
</User>
i would like to have a master report with the Name value shown and then either a grouped or subreport to show the list of Items with there titles displayed
As i am using xml as datasource so i have created a DataTable but it doesn't seem to allow for complex relationship so i have tried parameter passing but when accessing ReportParameters[0].Value from the subreport the value is always empty even though the Name and Type have values.
I have xml like the following
<User Id="1" Name="test">
<Item Id="123" Title="blah1"/>
<Item Id="1234" Title="blah2"/>
<Item Id="1235" Title="blah3"/>
<Item Id="1236" Title="blah4"/>
</User>
i would like to have a master report with the Name value shown and then either a grouped or subreport to show the list of Items with there titles displayed
As i am using xml as datasource so i have created a DataTable but it doesn't seem to allow for complex relationship so i have tried parameter passing but when accessing ReportParameters[0].Value from the subreport the value is always empty even though the Name and Type have values.