I have a UltraGrid and its datasource is BindingList<Objects>
I do group by a particular column band.SortedColumns.Add("Key", false, true);
Now I see a header on top of each group and on Grid. How do I hide the one top of Grid. Please see attached file to see my Grid appearance.
Thank you
Hello,
It seems that you are using the OutlookGroupBy ViewStyle. If you want you can change it like:
e.Layout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.Vertical;
Please let me know if that is what you want or I am missing someting.
Sincerely,
Danko Valkov
Developer Support Engineer
Infragistics, Inc.
I tried :e.Layout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.Vertical;
Setting ViewStyleBand to Vertical removes the grouping of each level that I showed you in the attachment. I want the grouping as well as the header hidden. Is it possible?