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
695
Outlook GroupBy not working
posted

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

Parents
  • 48586
    posted

    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.

Reply Children