Hi,
I've recently begun working with the UltraWebGrid and I'm very happy with the possibilities it offers.However, I do have some questions about the ViewType="OutlookGroupBy" property.If you group on more then 2 columns, the window where the 'grouped by' columns are displayed does notresize and you lose sight of which columns are being used for grouping. Also changing in what order the columns should be grouped is impossible since you can't see them.
Is there a property/method I've missed that can correct this?
How can I decrease the size of the box?
I would rather the 'grouped' columns align in a row rather than staggered.
After a bit of poking around I've found the solution:
private void UltraWebGrid1_InitializeLayout(object sender, Infragistics.WebUI.UltraWebGrid.LayoutEventArgs e){ int count = 1;foreach (UltraGridColumn var in this.UltraWebGrid1.DisplayLayout.Bands[0].Columns){if (var.IsGroupByColumn)count += 1;}this.UltraWebGrid1.DisplayLayout.GroupByBox.BoxStyle.Height = Unit.Pixel(30 * count);}
Using this bit of code, the Box size can be made to adjust itself every time a new column is selected for grouping.
Having the same issue. Any solutions?