I need to display rows of data, where one of the columns is also rows of data. How can I achieve this with one call to get the data.
The data received from data layer looks like this, it is one call to GetData() and it returns
List<Customer> customers where customer.Products= List<Product>
and I would like to display it as
CustomerId CustomerName Products
1 John Smith Paper 12.50
Pin 1.99
Clip 5.55
2 Jane Doe Paper 15.55
Pin 2.99
Can I achieve this display using two RadGrids?
Thanks,
The data received from data layer looks like this, it is one call to GetData() and it returns
List<Customer> customers where customer.Products= List<Product>
and I would like to display it as
CustomerId CustomerName Products
1 John Smith Paper 12.50
Pin 1.99
Clip 5.55
2 Jane Doe Paper 15.55
Pin 2.99
Can I achieve this display using two RadGrids?
Thanks,