I have a super simple need to group by a column and display the results
I just want the results to display in a grid grouped by the first column
Title 1
Title 2
what do I need to do to group this? I want it fully expanded as well...
Are you looking for something like this....
UltraGridBand
band = grd.DisplayLayout.Bands[0];
band.Override.AllowRowFiltering = Infragistics.Win.DefaultableBoolean.True;
band.Override.RowFilterMode =
RowFilterMode.AllRowsInBand;
band.ColumnFilters[
"col1"].FilterConditions.Add(FilterComparisionOperator.Like,comparevalue);
i think you need outlook group by
grd.DisplayLayout.ViewStyleBand = ViewStyleBand.OutlookGroupBy;
grd.DisplayLayout.Bands[0].SortedColumns.Add("Source", false, true);