1
vote
2answers
906 views
How do you get child bands in ultragrid without using related tables in a dataset?
I'm using linq to pull back an object (i.e. customer) that might have a collection of other objects(customer.orders). I would be nice if I can pass this list of customers to the ultragrid and a hi …
1
vote
How do you get child bands in ultragrid without using related tables in a dataset?
Figured it out. IList collection works and will create bands for properties of your domain object if it is IList. Just make sure that DisplayLayout.ViewStyle = ViewStyle.MultiBand;.
…
