Hi,
If I have a data structure that looks like this:
public class Customer
{
public string Name;
public string Address;
public IList<String> Orders;
}
and if i have an IList<Customer> and bind that to an ultraGrid, the grid has only 1 band.
I would like to have a second band that contains all the elements of the IList<String> Orders property for each Customer.
Is there an easy way to do this, or do i have to programmatically create a band at runtime and add the Orders to it?
Does that make sense?
Any help Much appreciated!
Mike
I think if you change IList to List it will work automatically.
Yep, that worked!
Thanks!