Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
430
Define Band Order
posted

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

 

Parents
No Data
Reply
  • 469350
    Offline posted

     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

Children