vote up 1 vote down star

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 hierarchical view of customers and thier orders displayed on databind. When I try this, I just get customers. Anyone know how to get this to work with non dataset objects?

flag

2 Answers

vote up 0 vote down

We work with our own custom datasource for grid, so we first create a structure of bands and then we initialize data OnDemand, handling events InitializeDataRow InitializeRowsCollection CellDataRequested

We use Tags to navigate through the structure.

link|flag
vote up 1 vote down check

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;.

link|flag
This solved a similar problem for me with a dataset with nested List collections, so +1 from me. – NiceGuyUK Oct 30 at 16:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.