Posted 15 September 2021, 4:58 am EST
Hi, I’m using rdlx with json provider data
I have a class
Class A
{
string ID,
List lstB
}
Class B
{
string C,
string D
}
I want display all C property inside lstB, how to do this?
Thanks
Forums Home / ActiveReports / ActiveReports v7+
Posted by: lesauthjenthu on 15 September 2021, 4:58 am EST
Posted 15 September 2021, 4:58 am EST
Hi, I’m using rdlx with json provider data
I have a class
Class A
{
string ID,
List lstB
}
Class B
{
string C,
string D
}
I want display all C property inside lstB, how to do this?
Thanks
Posted 20 September 2021, 4:28 am EST
Hello,
You can refer to the approach mentioned in the following link:
https://www.grapecity.com/forums/ar-dev/display-hierarchical-json
Thanks,
Mohit
Posted 29 September 2021, 5:29 am EST
Hi mohitg
I’m using PageDocument for load and set Parameters to main report
Then use PdfRenderingExtension to render
Now how to include sub report to my main report?
Posted 1 October 2021, 8:23 am EST
Please refer the following documentation page that explains how to include subreport in a main report:
https://www.grapecity.com/activereportsnet/docs/v14/online/subreport-in-rdl-report.html
Posted 4 October 2021, 6:45 am EST
I know how to include subreport in a main report
My problem is how to add data to subreport
My main report is load report to PageDocument
then using ```
pageDocument.Parameters[“ReportParameter1”].Values[0].Value = jsonStr;
I try the same with subreport but it not work
Posted 5 October 2021, 2:24 pm EST
Can you share the full code of how you’re loading data in the main report and subreport? If possible, please attach a sample application.