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
155
No headers shown in multiband grid after grouping
posted

This seems a bit odd. I have a grid in my app with

DisplayLayout.ViewStyle = ViewStyle.MultiBand;

Grouping this grid does not show the top level column headers. They just vanish. The screenshot below shows this:

http://imgur.com/QDyR4so,N4UJYp6#0

The headers are shown in the lower bands and in group expansions (and I want to keep all that) but I also want them at the top of the grid as they would do in a grouped single band grid. How can I achieve this?

I have already tried

band.ColHeadersVisible = False

and

band.GroupHeadersVisible = False

Setting

band.Override.HeaderPlacement = HeaderPlacement.FixedOnTop

does place the top header where I want but of course places band[1] headers at the top as well where I dont want them.

Any advice would be appreciated.