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
1205
Hiding column headers in WinGrid Child Bands
posted

Hi All,

I have a wingrid which contains a parent and child bands.  Is there a way of hiding the column headers in the child band so that when I expand rows all I see is the child rows with no column headers?

Thanks in advance,

Denis

Parents
No Data
Reply
  • 990
    posted

    Hi Denis,

    To do this in the UltraWinGrid Designer you can select Control Settings from the left panel then navigate to UltraGrid/DisplayLayout/Bands/YourBand then in the properties list change the ColHeadersVisible to False.

    Or in code:

                testGrid.DisplayLayout.Bands["YourBand"].ColHeadersVisible = false;

    Hope this helps,

    Andy.

Children
No Data