Hi,
I'm using Infragistics UltraGrid to show and edit my data.
My data is composed from a RootEntity with some subEntityCollection. (Customer --> Address, Customer --> Email, Customer --> Phones)
So I fetch my data, I bind my data do BindingSource object, ad I bind UltraGrid to BindingSource object.
Everithing is fine, I see my RootEntity in band 0, ad subEntityCollection in band 1,2,3.
Child bands are show in this order
Band 1 = Email
Band 2 = Address
Band 3 = Phones
Now I want to change this order. In this Gui I want Band 1 = Address, Band 2= Phones, and Band 3 = Email.
Infragistisc tell that there isn't any way to change the band order
, the band are show in the order they are returned by the binding manager.
So, I need a system to change the band order.
How can I change the order in wich the BindingManager return the EntityCollection?
I need to be able to decide the order at runtime, because I can have different gui showing different subset of the same data, but in different order (order of the band). Is this possible?
Thanks, Max