This question was asked before, but I'll put it out there again.
How can we define the order of child bands? I have three child bands at the same level under a parent row. I would like to control the order that they appear under the parent.
I'm using Infragistics2.Win.UltraWinGrid.v8.1
A child band is really just a column in the parent band.
So you can try to order the child bands in the same way you order the other columns, by setting the column.Header.VisiblePosition.
I'm not sure if this actually works for Child Bands, though. If not, then the only other way would be to implement ITypedList on your data source and rearrange the columns that are returned from the data source.
If the Header.VisiblePosition does not work, you should submit a feature request to Infragistics. Request a Feature or Component
The child band columns do not show up in the Designer. Changing them at runtime has no effect on the child band ordering.
I did submit a feature request.
I will be examining the ITypedList as a solution.
Thanks,Mike