This has to be some sort of bug or versioning issue...
I recently updated to v10.3 (specifically 10.3.20103.1000) and it seems that many of the default appearances have changed for the grid... not as concerned about that though.
The issues I'm noticing now is that the GroupByBox seems to have disappeared from all the grids I have created since the update. In previous versions, the GroupByBox was always visible by default (i.e Hidden = False). The "Hidden" property is still set to False by default, but there isn't a GroupByBox at the top of the grid. Toggling this property doesn't seem to have any effect... the GroupByBox never appears...
Anyone else notice this?
Hello ,
I am not sure what is the version of Infragistics from which you are upgrading.
In Infragistics 10.3, if you want to display GroupByBox you should set following property:
this.ultraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
So please verify that mentioned property is set to “OutlookGroupBy”. Also you could find more information about GroupByBox property in Infragistics 10.3 on the following link:
http://help.infragistics.com/Help/NetAdvantage/WinForms/2010.3/CLR2.0/html/Infragistics2.Win.UltraWinGrid.v10.3~Infragistics.Win.UltraWinGrid.UltraGridLayout~GroupByBox.html
Let me know if you have any further questions.
Thanks Hristo, up until this last upgrade my grids had always shown the box by default. Changing the ViewStyleBand did the trick.