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
475
How to hide the repeating column headers when showing parent and child rows in bands(0) and Bands(1)
posted

Hi I have a grid showing records in parent - child relationship manner. Whenever a row in bands(0) contains child rows in bands(1) the next immediate row in bands(0) again displaying the column header. I have highlighted the unwanted columns that are repeating everytime. I want only one header columns for the entire grid.

also whenever I resize the columns in bands(0) it should automatically resize in bands(1) columns too.

Any help on this please?

 

Thanks,
Arun.K.S

Parents
No Data
Reply
  • 37774
    Suggested Answer
    posted

    You can change how often the grid displays the headers through the HeaderPlacement property:

    this.ultraGrid1.DisplayLayout.Override.HeaderPlacement = Infragistics.Win.UltraWinGrid.HeaderPlacement.OncePerRowIsland;

    As for the issue with resizing the child band's columns, this should be occurring by default.  If it's not, you could check the AllowColSizing property on the Override object and ensure that it's set to Synchronized.

    -Matt

Children
No Data