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
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.