How to expand all rows after group by column programmatic
i.e
Dim Column As UltraGridColumn = UltraWebGrid1.DisplayLayout.Bands(0).Columns(Index)
UltraWebGrid1.DisplayLayout.ViewType = ViewType.OutlookGroupByUltraWebGrid1.DisplayLayout.Bands(0).SortedColumns.Add(Column, False)UltraWebGrid1.Columns(Index).IsGroupByColumn = True
Hello Sameh,
Thank you for posting your inquiry to the Infragistics ASP.Net Forums. To expand all the GroupBy rows, handle the UltraWebGrid InitializeGroupByRow event and call the Expand method for the rows as shown here:
protected void UltraWebGrid1_InitializeGroupByRow(object sender, RowEventArgs e){ e.Row.Expand(true);}
Please let me know if this information helps or if you have any questions.Sincerely,Mike D.Developer Support EngineerInfragisticswww.infragistics.com/support
Thanks for this solution .