I am using the UltraWinGrid 2010.2 and we have group by working in some other projects with the same dll, but it doesn't work in one particular project. I enabled it via the designer by clicking Start --> Feature Picker --> Outlook Group By and both "Active" and "Show GroupBy Box" are checked. In the Grid, I can see the area where it says Drag a column header here to group by that column, but when I drag on a column header, nothing really happens. Any clues as to where I might look?
thanks
greg
Hello ,
Please check your code if the ViewStileBand property is changed. To achieve GrpoupBy it should be
this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
Also check if GroupByBox.Hidden is set to false, this property is responses to hide show group by.
this.ultraGrid1.DisplayLayout.GroupByBox.Hidden = true;
Please let me know if you have any further questions.
I have correctly set these properties (see below) and can see the band at the top that says "Drag a Column Header here to Group By That Column". When I try to drag a column there, nothing happens. This works in my test class, but not in our real implementation. Any thoughts on where I should look?
;