Hi there!
I am trying to use telerik reporting to show customer's invoice table. I want every page with just one customer and one invoice table so I use report group. But I don't know how to set the datasource of the invoice table in every page. Can anyone help me?
My data structure is
Customer
{
string customer_name;
List<Invoice> invoiceList;
}
And I pass a List of Customers to report, and want it to show in this way
first page
customer1.name
the table of invoices of customer1
----------
second page
customer2.name
the table of invoices of customer2
----------
third page
.....
I am trying to use telerik reporting to show customer's invoice table. I want every page with just one customer and one invoice table so I use report group. But I don't know how to set the datasource of the invoice table in every page. Can anyone help me?
My data structure is
Customer
{
string customer_name;
List<Invoice> invoiceList;
}
And I pass a List of Customers to report, and want it to show in this way
first page
customer1.name
the table of invoices of customer1
----------
second page
customer2.name
the table of invoices of customer2
----------
third page
.....